schedules

package
v0.0.0-...-878b285 Latest Latest
Warning

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

Go to latest
Published: Sep 17, 2020 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 schedules API

func (*Client) SchedulesSchedulesCreate

func (a *Client) SchedulesSchedulesCreate(params *SchedulesSchedulesCreateParams) (*SchedulesSchedulesCreateCreated, error)
SchedulesSchedulesCreate schedules details

================

The following lists the expected format and details of our rrules:

* DTSTART is required and must follow the following format: DTSTART:YYYYMMDDTHHMMSSZ * DTSTART is expected to be in UTC * INTERVAL is required * SECONDLY is not supported * TZID is not supported * RRULE must precede the rule statements * BYDAY is supported but not BYDAY with a numerical prefix * BYYEARDAY and BYWEEKNO are not supported * Only one rrule statement per schedule is supported * COUNT must be < 1000

Here are some example rrules:

"DTSTART:20500331T055000Z RRULE:FREQ=MINUTELY;INTERVAL=10;COUNT=5"
"DTSTART:20240331T075000Z RRULE:FREQ=DAILY;INTERVAL=1;COUNT=1"
"DTSTART:20140331T075000Z RRULE:FREQ=MINUTELY;INTERVAL=1;UNTIL=20230401T075000Z"
"DTSTART:20140331T075000Z RRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR"
"DTSTART:20140331T075000Z RRULE:FREQ=WEEKLY;INTERVAL=5;BYDAY=MO"
"DTSTART:20140331T075000Z RRULE:FREQ=MONTHLY;INTERVAL=1;BYMONTHDAY=6"
"DTSTART:20140331T075000Z RRULE:FREQ=MONTHLY;INTERVAL=1;BYSETPOS=4;BYDAY=SU"
"DTSTART:20140331T075000Z RRULE:FREQ=MONTHLY;INTERVAL=1;BYSETPOS=-1;BYDAY=MO,TU,WE,TH,FR"
"DTSTART:20140331T075000Z RRULE:FREQ=MONTHLY;INTERVAL=1;BYSETPOS=-1;BYDAY=MO,TU,WE,TH,FR,SA,SU"
"DTSTART:20140331T075000Z RRULE:FREQ=YEARLY;INTERVAL=1;BYMONTH=4;BYMONTHDAY=1"
"DTSTART:20140331T075000Z RRULE:FREQ=YEARLY;INTERVAL=1;BYSETPOS=-1;BYMONTH=8;BYDAY=SU"
"DTSTART:20140331T075000Z RRULE:FREQ=WEEKLY;INTERVAL=1;UNTIL=20230401T075000Z;BYDAY=MO,WE,FR"
"DTSTART:20140331T075000Z RRULE:FREQ=HOURLY;INTERVAL=1;UNTIL=20230610T075000Z"

func (*Client) SchedulesSchedulesCredentialsCreate

func (a *Client) SchedulesSchedulesCredentialsCreate(params *SchedulesSchedulesCredentialsCreateParams) (*SchedulesSchedulesCredentialsCreateCreated, error)
SchedulesSchedulesCredentialsCreate creates a credential for a schedule

Make a POST request to this resource with the following credential fields to create a new credential associated with this schedule.

* `name`: Name of this credential. (string, required) * `description`: Optional description of this credential. (string, default=`""`) * `organization`: (id, default=`None`) * `credential_type`: Specify the type of credential you want to create. Refer to the Ansible Tower documentation for details on each type. (id, required) * `inputs`: Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax. (json, default=`{}`)

Add Credentials for a Schedule:

Make a POST request to this resource with only an `id` field to associate an existing credential with this schedule.

Remove Credentials from this Schedule:

Make a POST request to this resource with `id` and `disassociate` fields to remove the credential from this schedule

without deleting the credential.

func (*Client) SchedulesSchedulesCredentialsList

func (a *Client) SchedulesSchedulesCredentialsList(params *SchedulesSchedulesCredentialsListParams) (*SchedulesSchedulesCredentialsListOK, error)
SchedulesSchedulesCredentialsList lists credentials for a schedule

Make a GET request to this resource to retrieve a list of credentials associated with the selected schedule.

The resulting data structure contains:

{
    "count": 99,
    "next": null,
    "previous": null,
    "results": [
        ...
    ]
}

The `count` field indicates the total number of credentials found for the given query. The `next` and `previous` fields provides links to additional results if there are more than will fit on a single page. The `results` list contains zero or more credential records.

## Results

Each credential data structure includes the following fields:

* `id`: Database ID for this credential. (integer) * `type`: Data type for this credential. (choice) * `url`: URL for this credential. (string) * `related`: Data structure with URLs of related resources. (object) * `summary_fields`: Data structure with name/description for related resources. The output for some objects may be limited for performance reasons. (object) * `created`: Timestamp when this credential was created. (datetime) * `modified`: Timestamp when this credential was last modified. (datetime) * `name`: Name of this credential. (string) * `description`: Optional description of this credential. (string) * `organization`: (id) * `credential_type`: Specify the type of credential you want to create. Refer to the Ansible Tower documentation for details on each type. (id) * `inputs`: Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax. (json) * `kind`: (field) * `cloud`: (field) * `kubernetes`: (field)

## Sorting

To specify that credentials are returned in a particular order, use the `order_by` query string parameter on the GET request.

?order_by=name

Prefix the field name with a dash `-` to sort in reverse:

?order_by=-name

Multiple sorting fields may be specified by separating the field names with a comma `,`:

?order_by=name,some_other_field

## Pagination

Use the `page_size` query string parameter to change the number of results returned for each request. Use the `page` query string parameter to retrieve a particular page of results.

?page_size=100&page=2

The `previous` and `next` links returned with the results will set these query string parameters automatically.

## Searching

Use the `search` query string parameter to perform a case-insensitive search within all designated text fields of a model.

?search=findme

(_Added in Ansible Tower 3.1.0_) Search across related fields:

?related__search=findme

func (*Client) SchedulesSchedulesDelete

func (a *Client) SchedulesSchedulesDelete(params *SchedulesSchedulesDeleteParams) (*SchedulesSchedulesDeleteNoContent, error)
SchedulesSchedulesDelete deletes a schedule

Make a DELETE request to this resource to delete this schedule.

func (*Client) SchedulesSchedulesJobsList

func (a *Client) SchedulesSchedulesJobsList(params *SchedulesSchedulesJobsListParams) (*SchedulesSchedulesJobsListOK, error)
SchedulesSchedulesJobsList lists unified jobs for a schedule

Make a GET request to this resource to retrieve a list of unified jobs associated with the selected schedule.

The resulting data structure contains:

{
    "count": 99,
    "next": null,
    "previous": null,
    "results": [
        ...
    ]
}

The `count` field indicates the total number of unified jobs found for the given query. The `next` and `previous` fields provides links to additional results if there are more than will fit on a single page. The `results` list contains zero or more unified job records.

## Results

Each unified job data structure includes the following fields:

* `id`: Database ID for this unified job. (integer) * `type`: Data type for this unified job. (choice) * `url`: URL for this unified job. (string) * `related`: Data structure with URLs of related resources. (object) * `summary_fields`: Data structure with name/description for related resources. The output for some objects may be limited for performance reasons. (object) * `created`: Timestamp when this unified job was created. (datetime) * `modified`: Timestamp when this unified job was last modified. (datetime) * `name`: Name of this unified job. (string) * `description`: Optional description of this unified job. (string) * `unified_job_template`: (id) * `launch_type`: (choice)

  • `manual`: Manual
  • `relaunch`: Relaunch
  • `callback`: Callback
  • `scheduled`: Scheduled
  • `dependency`: Dependency
  • `workflow`: Workflow
  • `webhook`: Webhook
  • `sync`: Sync
  • `scm`: SCM Update

* `status`: (choice)

  • `new`: New
  • `pending`: Pending
  • `waiting`: Waiting
  • `running`: Running
  • `successful`: Successful
  • `failed`: Failed
  • `error`: Error
  • `canceled`: Canceled

* `failed`: (boolean) * `started`: The date and time the job was queued for starting. (datetime) * `finished`: The date and time the job finished execution. (datetime) * `canceled_on`: The date and time when the cancel request was sent. (datetime) * `elapsed`: Elapsed time in seconds that the job ran. (decimal) * `job_explanation`: A status field to indicate the state of the job if it wasn&#39;t able to run and capture stdout (string) * `execution_node`: The node the job executed on. (string) * `controller_node`: The instance that managed the isolated execution environment. (string)

## Sorting

To specify that unified jobs are returned in a particular order, use the `order_by` query string parameter on the GET request.

?order_by=name

Prefix the field name with a dash `-` to sort in reverse:

?order_by=-name

Multiple sorting fields may be specified by separating the field names with a comma `,`:

?order_by=name,some_other_field

## Pagination

Use the `page_size` query string parameter to change the number of results returned for each request. Use the `page` query string parameter to retrieve a particular page of results.

?page_size=100&page=2

The `previous` and `next` links returned with the results will set these query string parameters automatically.

## Searching

Use the `search` query string parameter to perform a case-insensitive search within all designated text fields of a model.

?search=findme

(_Added in Ansible Tower 3.1.0_) Search across related fields:

?related__search=findme

func (*Client) SchedulesSchedulesList

func (a *Client) SchedulesSchedulesList(params *SchedulesSchedulesListParams) (*SchedulesSchedulesListOK, error)
SchedulesSchedulesList lists schedules

Make a GET request to this resource to retrieve the list of schedules.

The resulting data structure contains:

{
    "count": 99,
    "next": null,
    "previous": null,
    "results": [
        ...
    ]
}

The `count` field indicates the total number of schedules found for the given query. The `next` and `previous` fields provides links to additional results if there are more than will fit on a single page. The `results` list contains zero or more schedule records.

## Results

Each schedule data structure includes the following fields:

* `rrule`: A value representing the schedules iCal recurrence rule. (string) * `id`: Database ID for this schedule. (integer) * `type`: Data type for this schedule. (choice) * `url`: URL for this schedule. (string) * `related`: Data structure with URLs of related resources. (object) * `summary_fields`: Data structure with name/description for related resources. The output for some objects may be limited for performance reasons. (object) * `created`: Timestamp when this schedule was created. (datetime) * `modified`: Timestamp when this schedule was last modified. (datetime) * `name`: Name of this schedule. (string) * `description`: Optional description of this schedule. (string) * `extra_data`: (json) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id) * `scm_branch`: (string) * `job_type`: (choice)

  • `None`: ---------
  • `""`: ---------
  • `run`: Run
  • `check`: Check

* `job_tags`: (string) * `skip_tags`: (string) * `limit`: (string) * `diff_mode`: (boolean) * `verbosity`: (choice)

  • `None`: ---------
  • `0`: 0 (Normal)
  • `1`: 1 (Verbose)
  • `2`: 2 (More Verbose)
  • `3`: 3 (Debug)
  • `4`: 4 (Connection Debug)
  • `5`: 5 (WinRM Debug)

* `unified_job_template`: (id) * `enabled`: Enables processing of this schedule. (boolean) * `dtstart`: The first occurrence of the schedule occurs on or after this time. (datetime) * `dtend`: The last occurrence of the schedule occurs before this time, aftewards the schedule expires. (datetime) * `next_run`: The next time that the scheduled action will run. (datetime) * `timezone`: (field) * `until`: (field)

## Sorting

To specify that schedules are returned in a particular order, use the `order_by` query string parameter on the GET request.

?order_by=name

Prefix the field name with a dash `-` to sort in reverse:

?order_by=-name

Multiple sorting fields may be specified by separating the field names with a comma `,`:

?order_by=name,some_other_field

## Pagination

Use the `page_size` query string parameter to change the number of results returned for each request. Use the `page` query string parameter to retrieve a particular page of results.

?page_size=100&page=2

The `previous` and `next` links returned with the results will set these query string parameters automatically.

## Searching

Use the `search` query string parameter to perform a case-insensitive search within all designated text fields of a model.

?search=findme

(_Added in Ansible Tower 3.1.0_) Search across related fields:

?related__search=findme

func (*Client) SchedulesSchedulesPartialUpdate

func (a *Client) SchedulesSchedulesPartialUpdate(params *SchedulesSchedulesPartialUpdateParams) (*SchedulesSchedulesPartialUpdateOK, error)
SchedulesSchedulesPartialUpdate updates a schedule

Make a PUT or PATCH request to this resource to update this schedule. The following fields may be modified:

* `rrule`: A value representing the schedules iCal recurrence rule. (string, required)

* `name`: Name of this schedule. (string, required) * `description`: Optional description of this schedule. (string, default=`""`) * `extra_data`: (json, default=`{}`) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id, default=“) * `scm_branch`: (string, default=`""`) * `job_type`: (choice)

  • `None`: --------- (default)
  • `""`: ---------
  • `run`: Run
  • `check`: Check

* `job_tags`: (string, default=`""`) * `skip_tags`: (string, default=`""`) * `limit`: (string, default=`""`) * `diff_mode`: (boolean, default=`None`) * `verbosity`: (choice)

  • `None`: --------- (default)
  • `0`: 0 (Normal)
  • `1`: 1 (Verbose)
  • `2`: 2 (More Verbose)
  • `3`: 3 (Debug)
  • `4`: 4 (Connection Debug)
  • `5`: 5 (WinRM Debug)

* `unified_job_template`: (id, required) * `enabled`: Enables processing of this schedule. (boolean, default=`True`)

For a PATCH request, include only the fields that are being modified.

func (*Client) SchedulesSchedulesPreviewCreate

SchedulesSchedulesPreviewCreate schedules schedules preview create API

func (*Client) SchedulesSchedulesRead

func (a *Client) SchedulesSchedulesRead(params *SchedulesSchedulesReadParams) (*SchedulesSchedulesReadOK, error)
SchedulesSchedulesRead retrieves a schedule

Make GET request to this resource to retrieve a single schedule record containing the following fields:

* `rrule`: A value representing the schedules iCal recurrence rule. (string) * `id`: Database ID for this schedule. (integer) * `type`: Data type for this schedule. (choice) * `url`: URL for this schedule. (string) * `related`: Data structure with URLs of related resources. (object) * `summary_fields`: Data structure with name/description for related resources. The output for some objects may be limited for performance reasons. (object) * `created`: Timestamp when this schedule was created. (datetime) * `modified`: Timestamp when this schedule was last modified. (datetime) * `name`: Name of this schedule. (string) * `description`: Optional description of this schedule. (string) * `extra_data`: (json) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id) * `scm_branch`: (string) * `job_type`: (choice)

  • `None`: ---------
  • `""`: ---------
  • `run`: Run
  • `check`: Check

* `job_tags`: (string) * `skip_tags`: (string) * `limit`: (string) * `diff_mode`: (boolean) * `verbosity`: (choice)

  • `None`: ---------
  • `0`: 0 (Normal)
  • `1`: 1 (Verbose)
  • `2`: 2 (More Verbose)
  • `3`: 3 (Debug)
  • `4`: 4 (Connection Debug)
  • `5`: 5 (WinRM Debug)

* `unified_job_template`: (id) * `enabled`: Enables processing of this schedule. (boolean) * `dtstart`: The first occurrence of the schedule occurs on or after this time. (datetime) * `dtend`: The last occurrence of the schedule occurs before this time, aftewards the schedule expires. (datetime) * `next_run`: The next time that the scheduled action will run. (datetime) * `timezone`: (field) * `until`: (field)

func (*Client) SchedulesSchedulesUpdate

func (a *Client) SchedulesSchedulesUpdate(params *SchedulesSchedulesUpdateParams) (*SchedulesSchedulesUpdateOK, error)
SchedulesSchedulesUpdate updates a schedule

Make a PUT or PATCH request to this resource to update this schedule. The following fields may be modified:

* `rrule`: A value representing the schedules iCal recurrence rule. (string, required)

* `name`: Name of this schedule. (string, required) * `description`: Optional description of this schedule. (string, default=`""`) * `extra_data`: (json, default=`{}`) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id, default=“) * `scm_branch`: (string, default=`""`) * `job_type`: (choice)

  • `None`: --------- (default)
  • `""`: ---------
  • `run`: Run
  • `check`: Check

* `job_tags`: (string, default=`""`) * `skip_tags`: (string, default=`""`) * `limit`: (string, default=`""`) * `diff_mode`: (boolean, default=`None`) * `verbosity`: (choice)

  • `None`: --------- (default)
  • `0`: 0 (Normal)
  • `1`: 1 (Verbose)
  • `2`: 2 (More Verbose)
  • `3`: 3 (Debug)
  • `4`: 4 (Connection Debug)
  • `5`: 5 (WinRM Debug)

* `unified_job_template`: (id, required) * `enabled`: Enables processing of this schedule. (boolean, default=`True`)

For a PUT request, include **all** fields in the request.

func (*Client) SchedulesSchedulesZoneinfoList

func (a *Client) SchedulesSchedulesZoneinfoList(params *SchedulesSchedulesZoneinfoListParams) (*SchedulesSchedulesZoneinfoListOK, error)

SchedulesSchedulesZoneinfoList schedules schedules zoneinfo list API

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	SchedulesSchedulesCreate(params *SchedulesSchedulesCreateParams) (*SchedulesSchedulesCreateCreated, error)

	SchedulesSchedulesCredentialsCreate(params *SchedulesSchedulesCredentialsCreateParams) (*SchedulesSchedulesCredentialsCreateCreated, error)

	SchedulesSchedulesCredentialsList(params *SchedulesSchedulesCredentialsListParams) (*SchedulesSchedulesCredentialsListOK, error)

	SchedulesSchedulesDelete(params *SchedulesSchedulesDeleteParams) (*SchedulesSchedulesDeleteNoContent, error)

	SchedulesSchedulesJobsList(params *SchedulesSchedulesJobsListParams) (*SchedulesSchedulesJobsListOK, error)

	SchedulesSchedulesList(params *SchedulesSchedulesListParams) (*SchedulesSchedulesListOK, error)

	SchedulesSchedulesPartialUpdate(params *SchedulesSchedulesPartialUpdateParams) (*SchedulesSchedulesPartialUpdateOK, error)

	SchedulesSchedulesPreviewCreate(params *SchedulesSchedulesPreviewCreateParams) (*SchedulesSchedulesPreviewCreateOK, *SchedulesSchedulesPreviewCreateCreated, error)

	SchedulesSchedulesRead(params *SchedulesSchedulesReadParams) (*SchedulesSchedulesReadOK, error)

	SchedulesSchedulesUpdate(params *SchedulesSchedulesUpdateParams) (*SchedulesSchedulesUpdateOK, error)

	SchedulesSchedulesZoneinfoList(params *SchedulesSchedulesZoneinfoListParams) (*SchedulesSchedulesZoneinfoListOK, 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 schedules API client.

type SchedulesSchedulesCreateCreated

type SchedulesSchedulesCreateCreated struct {
}

SchedulesSchedulesCreateCreated handles this case with default header values.

SchedulesSchedulesCreateCreated schedules schedules create created

func NewSchedulesSchedulesCreateCreated

func NewSchedulesSchedulesCreateCreated() *SchedulesSchedulesCreateCreated

NewSchedulesSchedulesCreateCreated creates a SchedulesSchedulesCreateCreated with default headers values

func (*SchedulesSchedulesCreateCreated) Error

type SchedulesSchedulesCreateForbidden

type SchedulesSchedulesCreateForbidden struct {
}

SchedulesSchedulesCreateForbidden handles this case with default header values.

No Permission Response

func NewSchedulesSchedulesCreateForbidden

func NewSchedulesSchedulesCreateForbidden() *SchedulesSchedulesCreateForbidden

NewSchedulesSchedulesCreateForbidden creates a SchedulesSchedulesCreateForbidden with default headers values

func (*SchedulesSchedulesCreateForbidden) Error

type SchedulesSchedulesCreateParams

type SchedulesSchedulesCreateParams struct {

	/*Data*/
	Data interface{}

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

SchedulesSchedulesCreateParams contains all the parameters to send to the API endpoint for the schedules schedules create operation typically these are written to a http.Request

func NewSchedulesSchedulesCreateParams

func NewSchedulesSchedulesCreateParams() *SchedulesSchedulesCreateParams

NewSchedulesSchedulesCreateParams creates a new SchedulesSchedulesCreateParams object with the default values initialized.

func NewSchedulesSchedulesCreateParamsWithContext

func NewSchedulesSchedulesCreateParamsWithContext(ctx context.Context) *SchedulesSchedulesCreateParams

NewSchedulesSchedulesCreateParamsWithContext creates a new SchedulesSchedulesCreateParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesCreateParamsWithHTTPClient

func NewSchedulesSchedulesCreateParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesCreateParams

NewSchedulesSchedulesCreateParamsWithHTTPClient creates a new SchedulesSchedulesCreateParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesCreateParamsWithTimeout

func NewSchedulesSchedulesCreateParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesCreateParams

NewSchedulesSchedulesCreateParamsWithTimeout creates a new SchedulesSchedulesCreateParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesCreateParams) SetContext

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

SetContext adds the context to the schedules schedules create params

func (*SchedulesSchedulesCreateParams) SetData

func (o *SchedulesSchedulesCreateParams) SetData(data interface{})

SetData adds the data to the schedules schedules create params

func (*SchedulesSchedulesCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules create params

func (*SchedulesSchedulesCreateParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules create params

func (*SchedulesSchedulesCreateParams) WithContext

WithContext adds the context to the schedules schedules create params

func (*SchedulesSchedulesCreateParams) WithData

func (o *SchedulesSchedulesCreateParams) WithData(data interface{}) *SchedulesSchedulesCreateParams

WithData adds the data to the schedules schedules create params

func (*SchedulesSchedulesCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules create params

func (*SchedulesSchedulesCreateParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules create params

func (*SchedulesSchedulesCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesCreateReader

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

SchedulesSchedulesCreateReader is a Reader for the SchedulesSchedulesCreate structure.

func (*SchedulesSchedulesCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesCredentialsCreateBody

type SchedulesSchedulesCredentialsCreateBody struct {

	// Specify the type of credential you want to create. Refer to the Ansible Tower documentation for details on each type.
	// Required: true
	CredentialType *int64 `json:"credential_type"`

	// description
	Description string `json:"description,omitempty"`

	// Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax.
	Inputs interface{} `json:"inputs,omitempty"`

	// name
	// Required: true
	Name *string `json:"name"`

	// organization
	Organization int64 `json:"organization,omitempty"`
}

SchedulesSchedulesCredentialsCreateBody schedules schedules credentials create body swagger:model SchedulesSchedulesCredentialsCreateBody

func (*SchedulesSchedulesCredentialsCreateBody) MarshalBinary

func (o *SchedulesSchedulesCredentialsCreateBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SchedulesSchedulesCredentialsCreateBody) UnmarshalBinary

func (o *SchedulesSchedulesCredentialsCreateBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SchedulesSchedulesCredentialsCreateBody) Validate

Validate validates this schedules schedules credentials create body

type SchedulesSchedulesCredentialsCreateCreated

type SchedulesSchedulesCredentialsCreateCreated struct {
}

SchedulesSchedulesCredentialsCreateCreated handles this case with default header values.

SchedulesSchedulesCredentialsCreateCreated schedules schedules credentials create created

func NewSchedulesSchedulesCredentialsCreateCreated

func NewSchedulesSchedulesCredentialsCreateCreated() *SchedulesSchedulesCredentialsCreateCreated

NewSchedulesSchedulesCredentialsCreateCreated creates a SchedulesSchedulesCredentialsCreateCreated with default headers values

func (*SchedulesSchedulesCredentialsCreateCreated) Error

type SchedulesSchedulesCredentialsCreateParams

type SchedulesSchedulesCredentialsCreateParams struct {

	/*Data*/
	Data SchedulesSchedulesCredentialsCreateBody
	/*ID*/
	ID string

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

SchedulesSchedulesCredentialsCreateParams contains all the parameters to send to the API endpoint for the schedules schedules credentials create operation typically these are written to a http.Request

func NewSchedulesSchedulesCredentialsCreateParams

func NewSchedulesSchedulesCredentialsCreateParams() *SchedulesSchedulesCredentialsCreateParams

NewSchedulesSchedulesCredentialsCreateParams creates a new SchedulesSchedulesCredentialsCreateParams object with the default values initialized.

func NewSchedulesSchedulesCredentialsCreateParamsWithContext

func NewSchedulesSchedulesCredentialsCreateParamsWithContext(ctx context.Context) *SchedulesSchedulesCredentialsCreateParams

NewSchedulesSchedulesCredentialsCreateParamsWithContext creates a new SchedulesSchedulesCredentialsCreateParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesCredentialsCreateParamsWithHTTPClient

func NewSchedulesSchedulesCredentialsCreateParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesCredentialsCreateParams

NewSchedulesSchedulesCredentialsCreateParamsWithHTTPClient creates a new SchedulesSchedulesCredentialsCreateParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesCredentialsCreateParamsWithTimeout

func NewSchedulesSchedulesCredentialsCreateParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesCredentialsCreateParams

NewSchedulesSchedulesCredentialsCreateParamsWithTimeout creates a new SchedulesSchedulesCredentialsCreateParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesCredentialsCreateParams) SetContext

SetContext adds the context to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) SetData

SetData adds the data to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) SetID

SetID adds the id to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) SetTimeout

SetTimeout adds the timeout to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) WithContext

WithContext adds the context to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) WithData

WithData adds the data to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) WithID

WithID adds the id to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules credentials create params

func (*SchedulesSchedulesCredentialsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesCredentialsCreateReader

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

SchedulesSchedulesCredentialsCreateReader is a Reader for the SchedulesSchedulesCredentialsCreate structure.

func (*SchedulesSchedulesCredentialsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesCredentialsListOK

type SchedulesSchedulesCredentialsListOK struct {
}

SchedulesSchedulesCredentialsListOK handles this case with default header values.

OK

func NewSchedulesSchedulesCredentialsListOK

func NewSchedulesSchedulesCredentialsListOK() *SchedulesSchedulesCredentialsListOK

NewSchedulesSchedulesCredentialsListOK creates a SchedulesSchedulesCredentialsListOK with default headers values

func (*SchedulesSchedulesCredentialsListOK) Error

type SchedulesSchedulesCredentialsListParams

type SchedulesSchedulesCredentialsListParams struct {

	/*ID*/
	ID string
	/*Page
	  A page number within the paginated result set.

	*/
	Page *int64
	/*PageSize
	  Number of results to return per page.

	*/
	PageSize *int64
	/*Search
	  A search term.

	*/
	Search *string

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

SchedulesSchedulesCredentialsListParams contains all the parameters to send to the API endpoint for the schedules schedules credentials list operation typically these are written to a http.Request

func NewSchedulesSchedulesCredentialsListParams

func NewSchedulesSchedulesCredentialsListParams() *SchedulesSchedulesCredentialsListParams

NewSchedulesSchedulesCredentialsListParams creates a new SchedulesSchedulesCredentialsListParams object with the default values initialized.

func NewSchedulesSchedulesCredentialsListParamsWithContext

func NewSchedulesSchedulesCredentialsListParamsWithContext(ctx context.Context) *SchedulesSchedulesCredentialsListParams

NewSchedulesSchedulesCredentialsListParamsWithContext creates a new SchedulesSchedulesCredentialsListParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesCredentialsListParamsWithHTTPClient

func NewSchedulesSchedulesCredentialsListParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesCredentialsListParams

NewSchedulesSchedulesCredentialsListParamsWithHTTPClient creates a new SchedulesSchedulesCredentialsListParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesCredentialsListParamsWithTimeout

func NewSchedulesSchedulesCredentialsListParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesCredentialsListParams

NewSchedulesSchedulesCredentialsListParamsWithTimeout creates a new SchedulesSchedulesCredentialsListParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesCredentialsListParams) SetContext

SetContext adds the context to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) SetID

SetID adds the id to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) SetPage

SetPage adds the page to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) SetPageSize

func (o *SchedulesSchedulesCredentialsListParams) SetPageSize(pageSize *int64)

SetPageSize adds the pageSize to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) SetSearch

func (o *SchedulesSchedulesCredentialsListParams) SetSearch(search *string)

SetSearch adds the search to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) WithContext

WithContext adds the context to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) WithID

WithID adds the id to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) WithPage

WithPage adds the page to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) WithPageSize

WithPageSize adds the pageSize to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) WithSearch

WithSearch adds the search to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules credentials list params

func (*SchedulesSchedulesCredentialsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesCredentialsListReader

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

SchedulesSchedulesCredentialsListReader is a Reader for the SchedulesSchedulesCredentialsList structure.

func (*SchedulesSchedulesCredentialsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesDeleteNoContent

type SchedulesSchedulesDeleteNoContent struct {
}

SchedulesSchedulesDeleteNoContent handles this case with default header values.

SchedulesSchedulesDeleteNoContent schedules schedules delete no content

func NewSchedulesSchedulesDeleteNoContent

func NewSchedulesSchedulesDeleteNoContent() *SchedulesSchedulesDeleteNoContent

NewSchedulesSchedulesDeleteNoContent creates a SchedulesSchedulesDeleteNoContent with default headers values

func (*SchedulesSchedulesDeleteNoContent) Error

type SchedulesSchedulesDeleteParams

type SchedulesSchedulesDeleteParams struct {

	/*ID*/
	ID string
	/*Search
	  A search term.

	*/
	Search *string

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

SchedulesSchedulesDeleteParams contains all the parameters to send to the API endpoint for the schedules schedules delete operation typically these are written to a http.Request

func NewSchedulesSchedulesDeleteParams

func NewSchedulesSchedulesDeleteParams() *SchedulesSchedulesDeleteParams

NewSchedulesSchedulesDeleteParams creates a new SchedulesSchedulesDeleteParams object with the default values initialized.

func NewSchedulesSchedulesDeleteParamsWithContext

func NewSchedulesSchedulesDeleteParamsWithContext(ctx context.Context) *SchedulesSchedulesDeleteParams

NewSchedulesSchedulesDeleteParamsWithContext creates a new SchedulesSchedulesDeleteParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesDeleteParamsWithHTTPClient

func NewSchedulesSchedulesDeleteParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesDeleteParams

NewSchedulesSchedulesDeleteParamsWithHTTPClient creates a new SchedulesSchedulesDeleteParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesDeleteParamsWithTimeout

func NewSchedulesSchedulesDeleteParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesDeleteParams

NewSchedulesSchedulesDeleteParamsWithTimeout creates a new SchedulesSchedulesDeleteParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesDeleteParams) SetContext

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

SetContext adds the context to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) SetID

SetID adds the id to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) SetSearch

func (o *SchedulesSchedulesDeleteParams) SetSearch(search *string)

SetSearch adds the search to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) WithContext

WithContext adds the context to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) WithID

WithID adds the id to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) WithSearch

WithSearch adds the search to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules delete params

func (*SchedulesSchedulesDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesDeleteReader

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

SchedulesSchedulesDeleteReader is a Reader for the SchedulesSchedulesDelete structure.

func (*SchedulesSchedulesDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesJobsListOK

type SchedulesSchedulesJobsListOK struct {
}

SchedulesSchedulesJobsListOK handles this case with default header values.

OK

func NewSchedulesSchedulesJobsListOK

func NewSchedulesSchedulesJobsListOK() *SchedulesSchedulesJobsListOK

NewSchedulesSchedulesJobsListOK creates a SchedulesSchedulesJobsListOK with default headers values

func (*SchedulesSchedulesJobsListOK) Error

type SchedulesSchedulesJobsListParams

type SchedulesSchedulesJobsListParams struct {

	/*ID*/
	ID string
	/*Page
	  A page number within the paginated result set.

	*/
	Page *int64
	/*PageSize
	  Number of results to return per page.

	*/
	PageSize *int64
	/*Search
	  A search term.

	*/
	Search *string

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

SchedulesSchedulesJobsListParams contains all the parameters to send to the API endpoint for the schedules schedules jobs list operation typically these are written to a http.Request

func NewSchedulesSchedulesJobsListParams

func NewSchedulesSchedulesJobsListParams() *SchedulesSchedulesJobsListParams

NewSchedulesSchedulesJobsListParams creates a new SchedulesSchedulesJobsListParams object with the default values initialized.

func NewSchedulesSchedulesJobsListParamsWithContext

func NewSchedulesSchedulesJobsListParamsWithContext(ctx context.Context) *SchedulesSchedulesJobsListParams

NewSchedulesSchedulesJobsListParamsWithContext creates a new SchedulesSchedulesJobsListParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesJobsListParamsWithHTTPClient

func NewSchedulesSchedulesJobsListParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesJobsListParams

NewSchedulesSchedulesJobsListParamsWithHTTPClient creates a new SchedulesSchedulesJobsListParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesJobsListParamsWithTimeout

func NewSchedulesSchedulesJobsListParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesJobsListParams

NewSchedulesSchedulesJobsListParamsWithTimeout creates a new SchedulesSchedulesJobsListParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesJobsListParams) SetContext

SetContext adds the context to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) SetID

SetID adds the id to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) SetPage

func (o *SchedulesSchedulesJobsListParams) SetPage(page *int64)

SetPage adds the page to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) SetPageSize

func (o *SchedulesSchedulesJobsListParams) SetPageSize(pageSize *int64)

SetPageSize adds the pageSize to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) SetSearch

func (o *SchedulesSchedulesJobsListParams) SetSearch(search *string)

SetSearch adds the search to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) WithContext

WithContext adds the context to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) WithID

WithID adds the id to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) WithPage

WithPage adds the page to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) WithPageSize

WithPageSize adds the pageSize to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) WithSearch

WithSearch adds the search to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules jobs list params

func (*SchedulesSchedulesJobsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesJobsListReader

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

SchedulesSchedulesJobsListReader is a Reader for the SchedulesSchedulesJobsList structure.

func (*SchedulesSchedulesJobsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesListOK

type SchedulesSchedulesListOK struct {
}

SchedulesSchedulesListOK handles this case with default header values.

OK

func NewSchedulesSchedulesListOK

func NewSchedulesSchedulesListOK() *SchedulesSchedulesListOK

NewSchedulesSchedulesListOK creates a SchedulesSchedulesListOK with default headers values

func (*SchedulesSchedulesListOK) Error

func (o *SchedulesSchedulesListOK) Error() string

type SchedulesSchedulesListParams

type SchedulesSchedulesListParams struct {

	/*Page
	  A page number within the paginated result set.

	*/
	Page *int64
	/*PageSize
	  Number of results to return per page.

	*/
	PageSize *int64
	/*Search
	  A search term.

	*/
	Search *string

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

SchedulesSchedulesListParams contains all the parameters to send to the API endpoint for the schedules schedules list operation typically these are written to a http.Request

func NewSchedulesSchedulesListParams

func NewSchedulesSchedulesListParams() *SchedulesSchedulesListParams

NewSchedulesSchedulesListParams creates a new SchedulesSchedulesListParams object with the default values initialized.

func NewSchedulesSchedulesListParamsWithContext

func NewSchedulesSchedulesListParamsWithContext(ctx context.Context) *SchedulesSchedulesListParams

NewSchedulesSchedulesListParamsWithContext creates a new SchedulesSchedulesListParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesListParamsWithHTTPClient

func NewSchedulesSchedulesListParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesListParams

NewSchedulesSchedulesListParamsWithHTTPClient creates a new SchedulesSchedulesListParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesListParamsWithTimeout

func NewSchedulesSchedulesListParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesListParams

NewSchedulesSchedulesListParamsWithTimeout creates a new SchedulesSchedulesListParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesListParams) SetContext

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

SetContext adds the context to the schedules schedules list params

func (*SchedulesSchedulesListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules list params

func (*SchedulesSchedulesListParams) SetPage

func (o *SchedulesSchedulesListParams) SetPage(page *int64)

SetPage adds the page to the schedules schedules list params

func (*SchedulesSchedulesListParams) SetPageSize

func (o *SchedulesSchedulesListParams) SetPageSize(pageSize *int64)

SetPageSize adds the pageSize to the schedules schedules list params

func (*SchedulesSchedulesListParams) SetSearch

func (o *SchedulesSchedulesListParams) SetSearch(search *string)

SetSearch adds the search to the schedules schedules list params

func (*SchedulesSchedulesListParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules list params

func (*SchedulesSchedulesListParams) WithContext

WithContext adds the context to the schedules schedules list params

func (*SchedulesSchedulesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules list params

func (*SchedulesSchedulesListParams) WithPage

WithPage adds the page to the schedules schedules list params

func (*SchedulesSchedulesListParams) WithPageSize

WithPageSize adds the pageSize to the schedules schedules list params

func (*SchedulesSchedulesListParams) WithSearch

WithSearch adds the search to the schedules schedules list params

func (*SchedulesSchedulesListParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules list params

func (*SchedulesSchedulesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesListReader

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

SchedulesSchedulesListReader is a Reader for the SchedulesSchedulesList structure.

func (*SchedulesSchedulesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesPartialUpdateOK

type SchedulesSchedulesPartialUpdateOK struct {
}

SchedulesSchedulesPartialUpdateOK handles this case with default header values.

OK

func NewSchedulesSchedulesPartialUpdateOK

func NewSchedulesSchedulesPartialUpdateOK() *SchedulesSchedulesPartialUpdateOK

NewSchedulesSchedulesPartialUpdateOK creates a SchedulesSchedulesPartialUpdateOK with default headers values

func (*SchedulesSchedulesPartialUpdateOK) Error

type SchedulesSchedulesPartialUpdateParams

type SchedulesSchedulesPartialUpdateParams struct {

	/*Data*/
	Data interface{}
	/*ID*/
	ID string
	/*Search
	  A search term.

	*/
	Search *string

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

SchedulesSchedulesPartialUpdateParams contains all the parameters to send to the API endpoint for the schedules schedules partial update operation typically these are written to a http.Request

func NewSchedulesSchedulesPartialUpdateParams

func NewSchedulesSchedulesPartialUpdateParams() *SchedulesSchedulesPartialUpdateParams

NewSchedulesSchedulesPartialUpdateParams creates a new SchedulesSchedulesPartialUpdateParams object with the default values initialized.

func NewSchedulesSchedulesPartialUpdateParamsWithContext

func NewSchedulesSchedulesPartialUpdateParamsWithContext(ctx context.Context) *SchedulesSchedulesPartialUpdateParams

NewSchedulesSchedulesPartialUpdateParamsWithContext creates a new SchedulesSchedulesPartialUpdateParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesPartialUpdateParamsWithHTTPClient

func NewSchedulesSchedulesPartialUpdateParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesPartialUpdateParams

NewSchedulesSchedulesPartialUpdateParamsWithHTTPClient creates a new SchedulesSchedulesPartialUpdateParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesPartialUpdateParamsWithTimeout

func NewSchedulesSchedulesPartialUpdateParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesPartialUpdateParams

NewSchedulesSchedulesPartialUpdateParamsWithTimeout creates a new SchedulesSchedulesPartialUpdateParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesPartialUpdateParams) SetContext

SetContext adds the context to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) SetData

func (o *SchedulesSchedulesPartialUpdateParams) SetData(data interface{})

SetData adds the data to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) SetID

SetID adds the id to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) SetSearch

func (o *SchedulesSchedulesPartialUpdateParams) SetSearch(search *string)

SetSearch adds the search to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) WithContext

WithContext adds the context to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) WithData

WithData adds the data to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) WithID

WithID adds the id to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) WithSearch

WithSearch adds the search to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules partial update params

func (*SchedulesSchedulesPartialUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesPartialUpdateReader

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

SchedulesSchedulesPartialUpdateReader is a Reader for the SchedulesSchedulesPartialUpdate structure.

func (*SchedulesSchedulesPartialUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesPreviewCreateCreated

type SchedulesSchedulesPreviewCreateCreated struct {
}

SchedulesSchedulesPreviewCreateCreated handles this case with default header values.

SchedulesSchedulesPreviewCreateCreated schedules schedules preview create created

func NewSchedulesSchedulesPreviewCreateCreated

func NewSchedulesSchedulesPreviewCreateCreated() *SchedulesSchedulesPreviewCreateCreated

NewSchedulesSchedulesPreviewCreateCreated creates a SchedulesSchedulesPreviewCreateCreated with default headers values

func (*SchedulesSchedulesPreviewCreateCreated) Error

type SchedulesSchedulesPreviewCreateOK

type SchedulesSchedulesPreviewCreateOK struct {
}

SchedulesSchedulesPreviewCreateOK handles this case with default header values.

OK

func NewSchedulesSchedulesPreviewCreateOK

func NewSchedulesSchedulesPreviewCreateOK() *SchedulesSchedulesPreviewCreateOK

NewSchedulesSchedulesPreviewCreateOK creates a SchedulesSchedulesPreviewCreateOK with default headers values

func (*SchedulesSchedulesPreviewCreateOK) Error

type SchedulesSchedulesPreviewCreateParams

type SchedulesSchedulesPreviewCreateParams struct {

	/*Data*/
	Data interface{}

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

SchedulesSchedulesPreviewCreateParams contains all the parameters to send to the API endpoint for the schedules schedules preview create operation typically these are written to a http.Request

func NewSchedulesSchedulesPreviewCreateParams

func NewSchedulesSchedulesPreviewCreateParams() *SchedulesSchedulesPreviewCreateParams

NewSchedulesSchedulesPreviewCreateParams creates a new SchedulesSchedulesPreviewCreateParams object with the default values initialized.

func NewSchedulesSchedulesPreviewCreateParamsWithContext

func NewSchedulesSchedulesPreviewCreateParamsWithContext(ctx context.Context) *SchedulesSchedulesPreviewCreateParams

NewSchedulesSchedulesPreviewCreateParamsWithContext creates a new SchedulesSchedulesPreviewCreateParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesPreviewCreateParamsWithHTTPClient

func NewSchedulesSchedulesPreviewCreateParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesPreviewCreateParams

NewSchedulesSchedulesPreviewCreateParamsWithHTTPClient creates a new SchedulesSchedulesPreviewCreateParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesPreviewCreateParamsWithTimeout

func NewSchedulesSchedulesPreviewCreateParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesPreviewCreateParams

NewSchedulesSchedulesPreviewCreateParamsWithTimeout creates a new SchedulesSchedulesPreviewCreateParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesPreviewCreateParams) SetContext

SetContext adds the context to the schedules schedules preview create params

func (*SchedulesSchedulesPreviewCreateParams) SetData

func (o *SchedulesSchedulesPreviewCreateParams) SetData(data interface{})

SetData adds the data to the schedules schedules preview create params

func (*SchedulesSchedulesPreviewCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules preview create params

func (*SchedulesSchedulesPreviewCreateParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules preview create params

func (*SchedulesSchedulesPreviewCreateParams) WithContext

WithContext adds the context to the schedules schedules preview create params

func (*SchedulesSchedulesPreviewCreateParams) WithData

WithData adds the data to the schedules schedules preview create params

func (*SchedulesSchedulesPreviewCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules preview create params

func (*SchedulesSchedulesPreviewCreateParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules preview create params

func (*SchedulesSchedulesPreviewCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesPreviewCreateReader

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

SchedulesSchedulesPreviewCreateReader is a Reader for the SchedulesSchedulesPreviewCreate structure.

func (*SchedulesSchedulesPreviewCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesReadOK

type SchedulesSchedulesReadOK struct {
}

SchedulesSchedulesReadOK handles this case with default header values.

OK

func NewSchedulesSchedulesReadOK

func NewSchedulesSchedulesReadOK() *SchedulesSchedulesReadOK

NewSchedulesSchedulesReadOK creates a SchedulesSchedulesReadOK with default headers values

func (*SchedulesSchedulesReadOK) Error

func (o *SchedulesSchedulesReadOK) Error() string

type SchedulesSchedulesReadParams

type SchedulesSchedulesReadParams struct {

	/*ID*/
	ID string
	/*Search
	  A search term.

	*/
	Search *string

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

SchedulesSchedulesReadParams contains all the parameters to send to the API endpoint for the schedules schedules read operation typically these are written to a http.Request

func NewSchedulesSchedulesReadParams

func NewSchedulesSchedulesReadParams() *SchedulesSchedulesReadParams

NewSchedulesSchedulesReadParams creates a new SchedulesSchedulesReadParams object with the default values initialized.

func NewSchedulesSchedulesReadParamsWithContext

func NewSchedulesSchedulesReadParamsWithContext(ctx context.Context) *SchedulesSchedulesReadParams

NewSchedulesSchedulesReadParamsWithContext creates a new SchedulesSchedulesReadParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesReadParamsWithHTTPClient

func NewSchedulesSchedulesReadParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesReadParams

NewSchedulesSchedulesReadParamsWithHTTPClient creates a new SchedulesSchedulesReadParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesReadParamsWithTimeout

func NewSchedulesSchedulesReadParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesReadParams

NewSchedulesSchedulesReadParamsWithTimeout creates a new SchedulesSchedulesReadParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesReadParams) SetContext

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

SetContext adds the context to the schedules schedules read params

func (*SchedulesSchedulesReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules read params

func (*SchedulesSchedulesReadParams) SetID

func (o *SchedulesSchedulesReadParams) SetID(id string)

SetID adds the id to the schedules schedules read params

func (*SchedulesSchedulesReadParams) SetSearch

func (o *SchedulesSchedulesReadParams) SetSearch(search *string)

SetSearch adds the search to the schedules schedules read params

func (*SchedulesSchedulesReadParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules read params

func (*SchedulesSchedulesReadParams) WithContext

WithContext adds the context to the schedules schedules read params

func (*SchedulesSchedulesReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules read params

func (*SchedulesSchedulesReadParams) WithID

WithID adds the id to the schedules schedules read params

func (*SchedulesSchedulesReadParams) WithSearch

WithSearch adds the search to the schedules schedules read params

func (*SchedulesSchedulesReadParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules read params

func (*SchedulesSchedulesReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesReadReader

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

SchedulesSchedulesReadReader is a Reader for the SchedulesSchedulesRead structure.

func (*SchedulesSchedulesReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesUpdateBody

type SchedulesSchedulesUpdateBody struct {

	// description
	Description string `json:"description,omitempty"`

	// diff mode
	DiffMode string `json:"diff_mode,omitempty"`

	// Enables processing of this schedule.
	Enabled string `json:"enabled,omitempty"`

	// extra data
	ExtraData string `json:"extra_data,omitempty"`

	// Inventory applied as a prompt, assuming job template prompts for inventory
	Inventory int64 `json:"inventory,omitempty"`

	// job tags
	JobTags string `json:"job_tags,omitempty"`

	// job type
	JobType string `json:"job_type,omitempty"`

	// limit
	Limit string `json:"limit,omitempty"`

	// name
	// Required: true
	Name *string `json:"name"`

	// A value representing the schedules iCal recurrence rule.
	// Required: true
	Rrule *string `json:"rrule"`

	// scm branch
	ScmBranch string `json:"scm_branch,omitempty"`

	// skip tags
	SkipTags string `json:"skip_tags,omitempty"`

	// unified job template
	// Required: true
	UnifiedJobTemplate *int64 `json:"unified_job_template"`

	// verbosity
	Verbosity string `json:"verbosity,omitempty"`
}

SchedulesSchedulesUpdateBody schedules schedules update body swagger:model SchedulesSchedulesUpdateBody

func (*SchedulesSchedulesUpdateBody) MarshalBinary

func (o *SchedulesSchedulesUpdateBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SchedulesSchedulesUpdateBody) UnmarshalBinary

func (o *SchedulesSchedulesUpdateBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SchedulesSchedulesUpdateBody) Validate

func (o *SchedulesSchedulesUpdateBody) Validate(formats strfmt.Registry) error

Validate validates this schedules schedules update body

type SchedulesSchedulesUpdateOK

type SchedulesSchedulesUpdateOK struct {
}

SchedulesSchedulesUpdateOK handles this case with default header values.

OK

func NewSchedulesSchedulesUpdateOK

func NewSchedulesSchedulesUpdateOK() *SchedulesSchedulesUpdateOK

NewSchedulesSchedulesUpdateOK creates a SchedulesSchedulesUpdateOK with default headers values

func (*SchedulesSchedulesUpdateOK) Error

type SchedulesSchedulesUpdateParams

type SchedulesSchedulesUpdateParams struct {

	/*Data*/
	Data SchedulesSchedulesUpdateBody
	/*ID*/
	ID string
	/*Search
	  A search term.

	*/
	Search *string

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

SchedulesSchedulesUpdateParams contains all the parameters to send to the API endpoint for the schedules schedules update operation typically these are written to a http.Request

func NewSchedulesSchedulesUpdateParams

func NewSchedulesSchedulesUpdateParams() *SchedulesSchedulesUpdateParams

NewSchedulesSchedulesUpdateParams creates a new SchedulesSchedulesUpdateParams object with the default values initialized.

func NewSchedulesSchedulesUpdateParamsWithContext

func NewSchedulesSchedulesUpdateParamsWithContext(ctx context.Context) *SchedulesSchedulesUpdateParams

NewSchedulesSchedulesUpdateParamsWithContext creates a new SchedulesSchedulesUpdateParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesUpdateParamsWithHTTPClient

func NewSchedulesSchedulesUpdateParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesUpdateParams

NewSchedulesSchedulesUpdateParamsWithHTTPClient creates a new SchedulesSchedulesUpdateParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesUpdateParamsWithTimeout

func NewSchedulesSchedulesUpdateParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesUpdateParams

NewSchedulesSchedulesUpdateParamsWithTimeout creates a new SchedulesSchedulesUpdateParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesUpdateParams) SetContext

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

SetContext adds the context to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) SetData

SetData adds the data to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) SetID

SetID adds the id to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) SetSearch

func (o *SchedulesSchedulesUpdateParams) SetSearch(search *string)

SetSearch adds the search to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) WithContext

WithContext adds the context to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) WithData

WithData adds the data to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) WithID

WithID adds the id to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) WithSearch

WithSearch adds the search to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules update params

func (*SchedulesSchedulesUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesUpdateReader

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

SchedulesSchedulesUpdateReader is a Reader for the SchedulesSchedulesUpdate structure.

func (*SchedulesSchedulesUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SchedulesSchedulesZoneinfoListOK

type SchedulesSchedulesZoneinfoListOK struct {
}

SchedulesSchedulesZoneinfoListOK handles this case with default header values.

OK

func NewSchedulesSchedulesZoneinfoListOK

func NewSchedulesSchedulesZoneinfoListOK() *SchedulesSchedulesZoneinfoListOK

NewSchedulesSchedulesZoneinfoListOK creates a SchedulesSchedulesZoneinfoListOK with default headers values

func (*SchedulesSchedulesZoneinfoListOK) Error

type SchedulesSchedulesZoneinfoListParams

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

SchedulesSchedulesZoneinfoListParams contains all the parameters to send to the API endpoint for the schedules schedules zoneinfo list operation typically these are written to a http.Request

func NewSchedulesSchedulesZoneinfoListParams

func NewSchedulesSchedulesZoneinfoListParams() *SchedulesSchedulesZoneinfoListParams

NewSchedulesSchedulesZoneinfoListParams creates a new SchedulesSchedulesZoneinfoListParams object with the default values initialized.

func NewSchedulesSchedulesZoneinfoListParamsWithContext

func NewSchedulesSchedulesZoneinfoListParamsWithContext(ctx context.Context) *SchedulesSchedulesZoneinfoListParams

NewSchedulesSchedulesZoneinfoListParamsWithContext creates a new SchedulesSchedulesZoneinfoListParams object with the default values initialized, and the ability to set a context for a request

func NewSchedulesSchedulesZoneinfoListParamsWithHTTPClient

func NewSchedulesSchedulesZoneinfoListParamsWithHTTPClient(client *http.Client) *SchedulesSchedulesZoneinfoListParams

NewSchedulesSchedulesZoneinfoListParamsWithHTTPClient creates a new SchedulesSchedulesZoneinfoListParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSchedulesSchedulesZoneinfoListParamsWithTimeout

func NewSchedulesSchedulesZoneinfoListParamsWithTimeout(timeout time.Duration) *SchedulesSchedulesZoneinfoListParams

NewSchedulesSchedulesZoneinfoListParamsWithTimeout creates a new SchedulesSchedulesZoneinfoListParams object with the default values initialized, and the ability to set a timeout on a request

func (*SchedulesSchedulesZoneinfoListParams) SetContext

SetContext adds the context to the schedules schedules zoneinfo list params

func (*SchedulesSchedulesZoneinfoListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the schedules schedules zoneinfo list params

func (*SchedulesSchedulesZoneinfoListParams) SetTimeout

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

SetTimeout adds the timeout to the schedules schedules zoneinfo list params

func (*SchedulesSchedulesZoneinfoListParams) WithContext

WithContext adds the context to the schedules schedules zoneinfo list params

func (*SchedulesSchedulesZoneinfoListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the schedules schedules zoneinfo list params

func (*SchedulesSchedulesZoneinfoListParams) WithTimeout

WithTimeout adds the timeout to the schedules schedules zoneinfo list params

func (*SchedulesSchedulesZoneinfoListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SchedulesSchedulesZoneinfoListReader

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

SchedulesSchedulesZoneinfoListReader is a Reader for the SchedulesSchedulesZoneinfoList structure.

func (*SchedulesSchedulesZoneinfoListReader) ReadResponse

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