jobs

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: 9 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 jobs API

func (*Client) JobsJobsActivityStreamList

func (a *Client) JobsJobsActivityStreamList(params *JobsJobsActivityStreamListParams) (*JobsJobsActivityStreamListOK, error)
JobsJobsActivityStreamList lists activity streams for a job

Make a GET request to this resource to retrieve a list of activity streams associated with the selected job.

The resulting data structure contains:

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

The `count` field indicates the total number of activity streams 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 activity stream records.

## Results

Each activity stream data structure includes the following fields:

* `id`: Database ID for this activity stream. (integer) * `type`: Data type for this activity stream. (choice) * `url`: URL for this activity stream. (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) * `timestamp`: (datetime) * `operation`: The action taken with respect to the given object(s). (choice)

  • `create`: Entity Created
  • `update`: Entity Updated
  • `delete`: Entity Deleted
  • `associate`: Entity Associated with another Entity
  • `disassociate`: Entity was Disassociated with another Entity

* `changes`: A summary of the new and changed values when an object is created, updated, or deleted (json) * `object1`: For create, update, and delete events this is the object type that was affected. For associate and disassociate events this is the object type associated or disassociated with object2. (string) * `object2`: Unpopulated for create, update, and delete events. For associate and disassociate events this is the object type that object1 is being associated with. (string) * `object_association`: When present, shows the field name of the role or relationship that changed. (field) * `action_node`: The cluster node the activity took place on. (string) * `object_type`: When present, shows the model on which the role or relationship was defined. (field)

## Sorting

To specify that activity streams 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) JobsJobsCancelCreate

func (a *Client) JobsJobsCancelCreate(params *JobsJobsCancelCreateParams) (*JobsJobsCancelCreateCreated, error)
JobsJobsCancelCreate cancels a job

Make a POST request to this resource to cancel a pending or running job.  The

response status code will be 202 if successful, or 405 if the job cannot be canceled.

func (*Client) JobsJobsCancelRead

func (a *Client) JobsJobsCancelRead(params *JobsJobsCancelReadParams) (*JobsJobsCancelReadOK, error)
JobsJobsCancelRead determines if a job can be canceled

Make a GET request to this resource to determine if the job can be canceled. The response will include the following field:

* `can_cancel`: Indicates whether this job can be canceled (boolean, read-only)

func (*Client) JobsJobsCreateScheduleCreate

func (a *Client) JobsJobsCreateScheduleCreate(params *JobsJobsCreateScheduleCreateParams) (*JobsJobsCreateScheduleCreateCreated, error)
JobsJobsCreateScheduleCreate creates a schedule based on a job

Make a POST request to this endpoint to create a schedule that launches the job template that launched this job, and uses the same parameters that the job was launched with. These parameters include all "prompted" resources such as `extra_vars`, `inventory`, `limit`, etc.

Jobs that were launched with user-provided passwords cannot have a schedule created from them.

Make a GET request for information about what those prompts are and whether or not a schedule can be created.

func (*Client) JobsJobsCreateScheduleRead

func (a *Client) JobsJobsCreateScheduleRead(params *JobsJobsCreateScheduleReadParams) (*JobsJobsCreateScheduleReadOK, error)
JobsJobsCreateScheduleRead creates a schedule based on a job

Make a POST request to this endpoint to create a schedule that launches the job template that launched this job, and uses the same parameters that the job was launched with. These parameters include all "prompted" resources such as `extra_vars`, `inventory`, `limit`, etc.

Jobs that were launched with user-provided passwords cannot have a schedule created from them.

Make a GET request for information about what those prompts are and whether or not a schedule can be created.

func (*Client) JobsJobsCredentialsList

func (a *Client) JobsJobsCredentialsList(params *JobsJobsCredentialsListParams) (*JobsJobsCredentialsListOK, error)
JobsJobsCredentialsList lists credentials for a job

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

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) JobsJobsDelete

func (a *Client) JobsJobsDelete(params *JobsJobsDeleteParams) (*JobsJobsDeleteNoContent, error)
JobsJobsDelete deletes a job

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

func (*Client) JobsJobsExtraCredentialsList

func (a *Client) JobsJobsExtraCredentialsList(params *JobsJobsExtraCredentialsListParams) (*JobsJobsExtraCredentialsListOK, error)
JobsJobsExtraCredentialsList lists credentials for a job

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

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) JobsJobsJobEventsList

func (a *Client) JobsJobsJobEventsList(params *JobsJobsJobEventsListParams) (*JobsJobsJobEventsListOK, error)
JobsJobsJobEventsList lists job events for a job

Make a GET request to this resource to retrieve a list of job events associated with the selected job.

The resulting data structure contains:

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

The `count` field indicates the total number of job events 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 job event records.

## Results

Each job event data structure includes the following fields:

* `id`: Database ID for this job event. (integer) * `type`: Data type for this job event. (choice) * `url`: URL for this job event. (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 job event was created. (datetime) * `modified`: Timestamp when this job event was last modified. (datetime) * `job`: (id) * `event`: (choice)

  • `runner_on_failed`: Host Failed
  • `runner_on_start`: Host Started
  • `runner_on_ok`: Host OK
  • `runner_on_error`: Host Failure
  • `runner_on_skipped`: Host Skipped
  • `runner_on_unreachable`: Host Unreachable
  • `runner_on_no_hosts`: No Hosts Remaining
  • `runner_on_async_poll`: Host Polling
  • `runner_on_async_ok`: Host Async OK
  • `runner_on_async_failed`: Host Async Failure
  • `runner_item_on_ok`: Item OK
  • `runner_item_on_failed`: Item Failed
  • `runner_item_on_skipped`: Item Skipped
  • `runner_retry`: Host Retry
  • `runner_on_file_diff`: File Difference
  • `playbook_on_start`: Playbook Started
  • `playbook_on_notify`: Running Handlers
  • `playbook_on_include`: Including File
  • `playbook_on_no_hosts_matched`: No Hosts Matched
  • `playbook_on_no_hosts_remaining`: No Hosts Remaining
  • `playbook_on_task_start`: Task Started
  • `playbook_on_vars_prompt`: Variables Prompted
  • `playbook_on_setup`: Gathering Facts
  • `playbook_on_import_for_host`: internal: on Import for Host
  • `playbook_on_not_import_for_host`: internal: on Not Import for Host
  • `playbook_on_play_start`: Play Started
  • `playbook_on_stats`: Playbook Complete
  • `debug`: Debug
  • `verbose`: Verbose
  • `deprecated`: Deprecated
  • `warning`: Warning
  • `system_warning`: System Warning
  • `error`: Error

* `counter`: (integer) * `event_display`: (string) * `event_data`: (json) * `event_level`: (integer) * `failed`: (boolean) * `changed`: (boolean) * `uuid`: (string) * `parent_uuid`: (string) * `host`: (id) * `host_name`: (string) * `playbook`: (string) * `play`: (string) * `task`: (string) * `role`: (string) * `stdout`: (string) * `start_line`: (integer) * `end_line`: (integer) * `verbosity`: (integer)

## Sorting

To specify that job events 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) JobsJobsJobHostSummariesList

func (a *Client) JobsJobsJobHostSummariesList(params *JobsJobsJobHostSummariesListParams) (*JobsJobsJobHostSummariesListOK, error)
JobsJobsJobHostSummariesList lists job host summaries for a job

Make a GET request to this resource to retrieve a list of job host summaries associated with the selected job.

The resulting data structure contains:

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

The `count` field indicates the total number of job host summaries 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 job host summary records.

## Results

Each job host summary data structure includes the following fields:

* `id`: Database ID for this job host summary. (integer) * `type`: Data type for this job host summary. (choice) * `url`: URL for this job host summary. (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 job host summary was created. (datetime) * `modified`: Timestamp when this job host summary was last modified. (datetime) * `job`: (id) * `host`: (id) * `host_name`: (string) * `changed`: (integer) * `dark`: (integer) * `failures`: (integer) * `ok`: (integer) * `processed`: (integer) * `skipped`: (integer) * `failed`: (boolean) * `ignored`: (integer) * `rescued`: (integer)

## Sorting

To specify that job host summaries 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) JobsJobsLabelsList

func (a *Client) JobsJobsLabelsList(params *JobsJobsLabelsListParams) (*JobsJobsLabelsListOK, error)
JobsJobsLabelsList lists labels for a job

Make a GET request to this resource to retrieve a list of labels associated with the selected job.

The resulting data structure contains:

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

The `count` field indicates the total number of labels 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 label records.

## Results

Each label data structure includes the following fields:

* `id`: Database ID for this label. (integer) * `type`: Data type for this label. (choice) * `url`: URL for this label. (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 label was created. (datetime) * `modified`: Timestamp when this label was last modified. (datetime) * `name`: Name of this label. (string) * `organization`: Organization this label belongs to. (id)

## Sorting

To specify that labels 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) JobsJobsList

func (a *Client) JobsJobsList(params *JobsJobsListParams) (*JobsJobsListOK, error)
JobsJobsList lists jobs

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

The resulting data structure contains:

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

The `count` field indicates the total number of 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 job records.

## Results

Each job data structure includes the following fields:

* `id`: Database ID for this job. (integer) * `type`: Data type for this job. (choice) * `url`: URL for this 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 job was created. (datetime) * `modified`: Timestamp when this job was last modified. (datetime) * `name`: Name of this job. (string) * `description`: Optional description of this 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'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) * `job_type`: (choice)

  • `run`: Run
  • `check`: Check
  • `scan`: Scan

* `inventory`: (id) * `project`: (id) * `playbook`: (string) * `scm_branch`: Branch to use in job run. Project default used if blank. Only allowed if project allow_override field is set to true. (string) * `forks`: (integer) * `limit`: (string) * `verbosity`: (choice)

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

* `extra_vars`: (json) * `job_tags`: (string) * `force_handlers`: (boolean) * `skip_tags`: (string) * `start_at_task`: (string) * `timeout`: The amount of time (in seconds) to run before the task is canceled. (integer) * `use_fact_cache`: If enabled, Tower will act as an Ansible Fact Cache Plugin; persisting facts at the end of a playbook run to the database and caching facts for use by Ansible. (boolean) * `organization`: The organization used to determine access to this unified job. (id) * `job_template`: (id) * `passwords_needed_to_start`: (field) * `allow_simultaneous`: (boolean) * `artifacts`: (json) * `scm_revision`: The SCM Revision from the Project used for this job, if available (string) * `instance_group`: The Instance group the job was run under (id) * `diff_mode`: If enabled, textual changes made to any templated files on the host are shown in the standard output (boolean) * `job_slice_number`: If part of a sliced job, the ID of the inventory slice operated on. If not part of sliced job, parameter is not used. (integer) * `job_slice_count`: If ran as part of sliced jobs, the total number of slices. If 1, job is not part of a sliced job. (integer) * `webhook_service`: Service that webhook requests will be accepted from (choice)

  • `""`: ---------
  • `github`: GitHub
  • `gitlab`: GitLab

* `webhook_credential`: Personal Access Token for posting back the status to the service API (id) * `webhook_guid`: Unique identifier of the event that triggered this webhook (string)

## Sorting

To specify that 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) JobsJobsNotificationsList

func (a *Client) JobsJobsNotificationsList(params *JobsJobsNotificationsListParams) (*JobsJobsNotificationsListOK, error)
JobsJobsNotificationsList lists notifications for a job

Make a GET request to this resource to retrieve a list of notifications associated with the selected job.

The resulting data structure contains:

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

The `count` field indicates the total number of notifications 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 notification records.

## Results

Each notification data structure includes the following fields:

* `id`: Database ID for this notification. (integer) * `type`: Data type for this notification. (choice) * `url`: URL for this notification. (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 notification was created. (datetime) * `modified`: Timestamp when this notification was last modified. (datetime) * `notification_template`: (id) * `error`: (string) * `status`: (choice)

  • `pending`: Pending
  • `successful`: Successful
  • `failed`: Failed

* `notifications_sent`: (integer) * `notification_type`: (choice)

  • `email`: Email
  • `grafana`: Grafana
  • `hipchat`: HipChat
  • `irc`: IRC
  • `mattermost`: Mattermost
  • `pagerduty`: Pagerduty
  • `rocketchat`: Rocket.Chat
  • `slack`: Slack
  • `twilio`: Twilio
  • `webhook`: Webhook

* `recipients`: (string) * `subject`: (string) * `body`: Notification body (json)

## Sorting

To specify that notifications 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) JobsJobsRead0

func (a *Client) JobsJobsRead0(params *JobsJobsRead0Params) (*JobsJobsRead0OK, error)
JobsJobsRead0 retrieves a job host summary

Make GET request to this resource to retrieve a single job host summary record containing the following fields:

* `id`: Database ID for this job host summary. (integer) * `type`: Data type for this job host summary. (choice) * `url`: URL for this job host summary. (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 job host summary was created. (datetime) * `modified`: Timestamp when this job host summary was last modified. (datetime) * `job`: (id) * `host`: (id) * `host_name`: (string) * `changed`: (integer) * `dark`: (integer) * `failures`: (integer) * `ok`: (integer) * `processed`: (integer) * `skipped`: (integer) * `failed`: (boolean) * `ignored`: (integer) * `rescued`: (integer)

func (*Client) JobsJobsRelaunchCreate

func (a *Client) JobsJobsRelaunchCreate(params *JobsJobsRelaunchCreateParams) (*JobsJobsRelaunchCreateCreated, error)
JobsJobsRelaunchCreate relaunches a job

Make a POST request to this resource to launch a job. If any passwords or variables are required then they should be passed in via POST data. In order to determine what values are required in order to launch a job based on this job template you may make a GET request to this endpoint.

func (*Client) JobsJobsRelaunchRead

func (a *Client) JobsJobsRelaunchRead(params *JobsJobsRelaunchReadParams) (*JobsJobsRelaunchReadOK, error)
JobsJobsRelaunchRead relaunches a job

Make a POST request to this resource to launch a job. If any passwords or variables are required then they should be passed in via POST data. In order to determine what values are required in order to launch a job based on this job template you may make a GET request to this endpoint.

func (*Client) JobsJobsStdoutRead

func (a *Client) JobsJobsStdoutRead(params *JobsJobsStdoutReadParams) (*JobsJobsStdoutReadOK, error)
JobsJobsStdoutRead retrieves job stdout

Make GET request to this resource to retrieve the stdout from running this job.

## Format

Use the `format` query string parameter to specify the output format.

* Browsable API: `?format=api` * HTML: `?format=html` * Plain Text: `?format=txt` * Plain Text with ANSI color codes: `?format=ansi` * JSON structure: `?format=json` * Downloaded Plain Text: `?format=txt_download` * Downloaded Plain Text with ANSI color codes: `?format=ansi_download`

(_New in Ansible Tower 2.0.0_) When using the Browsable API, HTML and JSON formats, the `start_line` and `end_line` query string parameters can be used to specify a range of line numbers to retrieve.

Use `dark=1` or `dark=0` as a query string parameter to force or disable a dark background.

Files over 1.0 MB (configurable) will not display in the browser. Use the `txt_download` or `ansi_download` formats to download the file directly to view it.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	JobsJobsActivityStreamList(params *JobsJobsActivityStreamListParams) (*JobsJobsActivityStreamListOK, error)

	JobsJobsCancelCreate(params *JobsJobsCancelCreateParams) (*JobsJobsCancelCreateCreated, error)

	JobsJobsCancelRead(params *JobsJobsCancelReadParams) (*JobsJobsCancelReadOK, error)

	JobsJobsCreateScheduleCreate(params *JobsJobsCreateScheduleCreateParams) (*JobsJobsCreateScheduleCreateCreated, error)

	JobsJobsCreateScheduleRead(params *JobsJobsCreateScheduleReadParams) (*JobsJobsCreateScheduleReadOK, error)

	JobsJobsCredentialsList(params *JobsJobsCredentialsListParams) (*JobsJobsCredentialsListOK, error)

	JobsJobsDelete(params *JobsJobsDeleteParams) (*JobsJobsDeleteNoContent, error)

	JobsJobsExtraCredentialsList(params *JobsJobsExtraCredentialsListParams) (*JobsJobsExtraCredentialsListOK, error)

	JobsJobsJobEventsList(params *JobsJobsJobEventsListParams) (*JobsJobsJobEventsListOK, error)

	JobsJobsJobHostSummariesList(params *JobsJobsJobHostSummariesListParams) (*JobsJobsJobHostSummariesListOK, error)

	JobsJobsLabelsList(params *JobsJobsLabelsListParams) (*JobsJobsLabelsListOK, error)

	JobsJobsList(params *JobsJobsListParams) (*JobsJobsListOK, error)

	JobsJobsNotificationsList(params *JobsJobsNotificationsListParams) (*JobsJobsNotificationsListOK, error)

	JobsJobsRead0(params *JobsJobsRead0Params) (*JobsJobsRead0OK, error)

	JobsJobsRelaunchCreate(params *JobsJobsRelaunchCreateParams) (*JobsJobsRelaunchCreateCreated, error)

	JobsJobsRelaunchRead(params *JobsJobsRelaunchReadParams) (*JobsJobsRelaunchReadOK, error)

	JobsJobsStdoutRead(params *JobsJobsStdoutReadParams) (*JobsJobsStdoutReadOK, 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 jobs API client.

type JobsJobsActivityStreamListOK

type JobsJobsActivityStreamListOK struct {
}

JobsJobsActivityStreamListOK handles this case with default header values.

OK

func NewJobsJobsActivityStreamListOK

func NewJobsJobsActivityStreamListOK() *JobsJobsActivityStreamListOK

NewJobsJobsActivityStreamListOK creates a JobsJobsActivityStreamListOK with default headers values

func (*JobsJobsActivityStreamListOK) Error

type JobsJobsActivityStreamListParams

type JobsJobsActivityStreamListParams 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
}

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

func NewJobsJobsActivityStreamListParams

func NewJobsJobsActivityStreamListParams() *JobsJobsActivityStreamListParams

NewJobsJobsActivityStreamListParams creates a new JobsJobsActivityStreamListParams object with the default values initialized.

func NewJobsJobsActivityStreamListParamsWithContext

func NewJobsJobsActivityStreamListParamsWithContext(ctx context.Context) *JobsJobsActivityStreamListParams

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

func NewJobsJobsActivityStreamListParamsWithHTTPClient

func NewJobsJobsActivityStreamListParamsWithHTTPClient(client *http.Client) *JobsJobsActivityStreamListParams

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

func NewJobsJobsActivityStreamListParamsWithTimeout

func NewJobsJobsActivityStreamListParamsWithTimeout(timeout time.Duration) *JobsJobsActivityStreamListParams

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

func (*JobsJobsActivityStreamListParams) SetContext

SetContext adds the context to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) SetID

SetID adds the id to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) SetPage

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

SetPage adds the page to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) SetPageSize

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

SetPageSize adds the pageSize to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) SetSearch

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

SetSearch adds the search to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) WithContext

WithContext adds the context to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) WithID

WithID adds the id to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) WithPage

WithPage adds the page to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) WithPageSize

WithPageSize adds the pageSize to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) WithSearch

WithSearch adds the search to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs activity stream list params

func (*JobsJobsActivityStreamListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsActivityStreamListReader

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

JobsJobsActivityStreamListReader is a Reader for the JobsJobsActivityStreamList structure.

func (*JobsJobsActivityStreamListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsCancelCreateCreated

type JobsJobsCancelCreateCreated struct {
}

JobsJobsCancelCreateCreated handles this case with default header values.

JobsJobsCancelCreateCreated jobs jobs cancel create created

func NewJobsJobsCancelCreateCreated

func NewJobsJobsCancelCreateCreated() *JobsJobsCancelCreateCreated

NewJobsJobsCancelCreateCreated creates a JobsJobsCancelCreateCreated with default headers values

func (*JobsJobsCancelCreateCreated) Error

type JobsJobsCancelCreateParams

type JobsJobsCancelCreateParams struct {

	/*ID*/
	ID string

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

JobsJobsCancelCreateParams contains all the parameters to send to the API endpoint for the jobs jobs cancel create operation typically these are written to a http.Request

func NewJobsJobsCancelCreateParams

func NewJobsJobsCancelCreateParams() *JobsJobsCancelCreateParams

NewJobsJobsCancelCreateParams creates a new JobsJobsCancelCreateParams object with the default values initialized.

func NewJobsJobsCancelCreateParamsWithContext

func NewJobsJobsCancelCreateParamsWithContext(ctx context.Context) *JobsJobsCancelCreateParams

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

func NewJobsJobsCancelCreateParamsWithHTTPClient

func NewJobsJobsCancelCreateParamsWithHTTPClient(client *http.Client) *JobsJobsCancelCreateParams

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

func NewJobsJobsCancelCreateParamsWithTimeout

func NewJobsJobsCancelCreateParamsWithTimeout(timeout time.Duration) *JobsJobsCancelCreateParams

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

func (*JobsJobsCancelCreateParams) SetContext

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

SetContext adds the context to the jobs jobs cancel create params

func (*JobsJobsCancelCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs cancel create params

func (*JobsJobsCancelCreateParams) SetID

func (o *JobsJobsCancelCreateParams) SetID(id string)

SetID adds the id to the jobs jobs cancel create params

func (*JobsJobsCancelCreateParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs cancel create params

func (*JobsJobsCancelCreateParams) WithContext

WithContext adds the context to the jobs jobs cancel create params

func (*JobsJobsCancelCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs cancel create params

func (*JobsJobsCancelCreateParams) WithID

WithID adds the id to the jobs jobs cancel create params

func (*JobsJobsCancelCreateParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs cancel create params

func (*JobsJobsCancelCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsCancelCreateReader

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

JobsJobsCancelCreateReader is a Reader for the JobsJobsCancelCreate structure.

func (*JobsJobsCancelCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsCancelReadOK

type JobsJobsCancelReadOK struct {
}

JobsJobsCancelReadOK handles this case with default header values.

OK

func NewJobsJobsCancelReadOK

func NewJobsJobsCancelReadOK() *JobsJobsCancelReadOK

NewJobsJobsCancelReadOK creates a JobsJobsCancelReadOK with default headers values

func (*JobsJobsCancelReadOK) Error

func (o *JobsJobsCancelReadOK) Error() string

type JobsJobsCancelReadParams

type JobsJobsCancelReadParams struct {

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

	*/
	Search *string

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

JobsJobsCancelReadParams contains all the parameters to send to the API endpoint for the jobs jobs cancel read operation typically these are written to a http.Request

func NewJobsJobsCancelReadParams

func NewJobsJobsCancelReadParams() *JobsJobsCancelReadParams

NewJobsJobsCancelReadParams creates a new JobsJobsCancelReadParams object with the default values initialized.

func NewJobsJobsCancelReadParamsWithContext

func NewJobsJobsCancelReadParamsWithContext(ctx context.Context) *JobsJobsCancelReadParams

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

func NewJobsJobsCancelReadParamsWithHTTPClient

func NewJobsJobsCancelReadParamsWithHTTPClient(client *http.Client) *JobsJobsCancelReadParams

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

func NewJobsJobsCancelReadParamsWithTimeout

func NewJobsJobsCancelReadParamsWithTimeout(timeout time.Duration) *JobsJobsCancelReadParams

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

func (*JobsJobsCancelReadParams) SetContext

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

SetContext adds the context to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) SetID

func (o *JobsJobsCancelReadParams) SetID(id string)

SetID adds the id to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) SetSearch

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

SetSearch adds the search to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) WithContext

WithContext adds the context to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) WithID

WithID adds the id to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) WithSearch

WithSearch adds the search to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs cancel read params

func (*JobsJobsCancelReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsCancelReadReader

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

JobsJobsCancelReadReader is a Reader for the JobsJobsCancelRead structure.

func (*JobsJobsCancelReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsCreateScheduleCreateCreated

type JobsJobsCreateScheduleCreateCreated struct {
}

JobsJobsCreateScheduleCreateCreated handles this case with default header values.

JobsJobsCreateScheduleCreateCreated jobs jobs create schedule create created

func NewJobsJobsCreateScheduleCreateCreated

func NewJobsJobsCreateScheduleCreateCreated() *JobsJobsCreateScheduleCreateCreated

NewJobsJobsCreateScheduleCreateCreated creates a JobsJobsCreateScheduleCreateCreated with default headers values

func (*JobsJobsCreateScheduleCreateCreated) Error

type JobsJobsCreateScheduleCreateParams

type JobsJobsCreateScheduleCreateParams struct {

	/*ID*/
	ID string

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

JobsJobsCreateScheduleCreateParams contains all the parameters to send to the API endpoint for the jobs jobs create schedule create operation typically these are written to a http.Request

func NewJobsJobsCreateScheduleCreateParams

func NewJobsJobsCreateScheduleCreateParams() *JobsJobsCreateScheduleCreateParams

NewJobsJobsCreateScheduleCreateParams creates a new JobsJobsCreateScheduleCreateParams object with the default values initialized.

func NewJobsJobsCreateScheduleCreateParamsWithContext

func NewJobsJobsCreateScheduleCreateParamsWithContext(ctx context.Context) *JobsJobsCreateScheduleCreateParams

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

func NewJobsJobsCreateScheduleCreateParamsWithHTTPClient

func NewJobsJobsCreateScheduleCreateParamsWithHTTPClient(client *http.Client) *JobsJobsCreateScheduleCreateParams

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

func NewJobsJobsCreateScheduleCreateParamsWithTimeout

func NewJobsJobsCreateScheduleCreateParamsWithTimeout(timeout time.Duration) *JobsJobsCreateScheduleCreateParams

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

func (*JobsJobsCreateScheduleCreateParams) SetContext

SetContext adds the context to the jobs jobs create schedule create params

func (*JobsJobsCreateScheduleCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs create schedule create params

func (*JobsJobsCreateScheduleCreateParams) SetID

SetID adds the id to the jobs jobs create schedule create params

func (*JobsJobsCreateScheduleCreateParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs create schedule create params

func (*JobsJobsCreateScheduleCreateParams) WithContext

WithContext adds the context to the jobs jobs create schedule create params

func (*JobsJobsCreateScheduleCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs create schedule create params

func (*JobsJobsCreateScheduleCreateParams) WithID

WithID adds the id to the jobs jobs create schedule create params

func (*JobsJobsCreateScheduleCreateParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs create schedule create params

func (*JobsJobsCreateScheduleCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsCreateScheduleCreateReader

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

JobsJobsCreateScheduleCreateReader is a Reader for the JobsJobsCreateScheduleCreate structure.

func (*JobsJobsCreateScheduleCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsCreateScheduleReadOK

type JobsJobsCreateScheduleReadOK struct {
}

JobsJobsCreateScheduleReadOK handles this case with default header values.

OK

func NewJobsJobsCreateScheduleReadOK

func NewJobsJobsCreateScheduleReadOK() *JobsJobsCreateScheduleReadOK

NewJobsJobsCreateScheduleReadOK creates a JobsJobsCreateScheduleReadOK with default headers values

func (*JobsJobsCreateScheduleReadOK) Error

type JobsJobsCreateScheduleReadParams

type JobsJobsCreateScheduleReadParams struct {

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

	*/
	Search *string

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

JobsJobsCreateScheduleReadParams contains all the parameters to send to the API endpoint for the jobs jobs create schedule read operation typically these are written to a http.Request

func NewJobsJobsCreateScheduleReadParams

func NewJobsJobsCreateScheduleReadParams() *JobsJobsCreateScheduleReadParams

NewJobsJobsCreateScheduleReadParams creates a new JobsJobsCreateScheduleReadParams object with the default values initialized.

func NewJobsJobsCreateScheduleReadParamsWithContext

func NewJobsJobsCreateScheduleReadParamsWithContext(ctx context.Context) *JobsJobsCreateScheduleReadParams

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

func NewJobsJobsCreateScheduleReadParamsWithHTTPClient

func NewJobsJobsCreateScheduleReadParamsWithHTTPClient(client *http.Client) *JobsJobsCreateScheduleReadParams

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

func NewJobsJobsCreateScheduleReadParamsWithTimeout

func NewJobsJobsCreateScheduleReadParamsWithTimeout(timeout time.Duration) *JobsJobsCreateScheduleReadParams

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

func (*JobsJobsCreateScheduleReadParams) SetContext

SetContext adds the context to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) SetID

SetID adds the id to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) SetSearch

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

SetSearch adds the search to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) WithContext

WithContext adds the context to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) WithID

WithID adds the id to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) WithSearch

WithSearch adds the search to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs create schedule read params

func (*JobsJobsCreateScheduleReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsCreateScheduleReadReader

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

JobsJobsCreateScheduleReadReader is a Reader for the JobsJobsCreateScheduleRead structure.

func (*JobsJobsCreateScheduleReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsCredentialsListOK

type JobsJobsCredentialsListOK struct {
}

JobsJobsCredentialsListOK handles this case with default header values.

OK

func NewJobsJobsCredentialsListOK

func NewJobsJobsCredentialsListOK() *JobsJobsCredentialsListOK

NewJobsJobsCredentialsListOK creates a JobsJobsCredentialsListOK with default headers values

func (*JobsJobsCredentialsListOK) Error

func (o *JobsJobsCredentialsListOK) Error() string

type JobsJobsCredentialsListParams

type JobsJobsCredentialsListParams 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
}

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

func NewJobsJobsCredentialsListParams

func NewJobsJobsCredentialsListParams() *JobsJobsCredentialsListParams

NewJobsJobsCredentialsListParams creates a new JobsJobsCredentialsListParams object with the default values initialized.

func NewJobsJobsCredentialsListParamsWithContext

func NewJobsJobsCredentialsListParamsWithContext(ctx context.Context) *JobsJobsCredentialsListParams

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

func NewJobsJobsCredentialsListParamsWithHTTPClient

func NewJobsJobsCredentialsListParamsWithHTTPClient(client *http.Client) *JobsJobsCredentialsListParams

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

func NewJobsJobsCredentialsListParamsWithTimeout

func NewJobsJobsCredentialsListParamsWithTimeout(timeout time.Duration) *JobsJobsCredentialsListParams

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

func (*JobsJobsCredentialsListParams) SetContext

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

SetContext adds the context to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) SetID

SetID adds the id to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) SetPage

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

SetPage adds the page to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) SetPageSize

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

SetPageSize adds the pageSize to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) SetSearch

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

SetSearch adds the search to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) WithContext

WithContext adds the context to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) WithID

WithID adds the id to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) WithPage

WithPage adds the page to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) WithPageSize

WithPageSize adds the pageSize to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) WithSearch

WithSearch adds the search to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs credentials list params

func (*JobsJobsCredentialsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsCredentialsListReader

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

JobsJobsCredentialsListReader is a Reader for the JobsJobsCredentialsList structure.

func (*JobsJobsCredentialsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsDeleteForbidden

type JobsJobsDeleteForbidden struct {
}

JobsJobsDeleteForbidden handles this case with default header values.

No Permission Response

func NewJobsJobsDeleteForbidden

func NewJobsJobsDeleteForbidden() *JobsJobsDeleteForbidden

NewJobsJobsDeleteForbidden creates a JobsJobsDeleteForbidden with default headers values

func (*JobsJobsDeleteForbidden) Error

func (o *JobsJobsDeleteForbidden) Error() string

type JobsJobsDeleteNoContent

type JobsJobsDeleteNoContent struct {
}

JobsJobsDeleteNoContent handles this case with default header values.

JobsJobsDeleteNoContent jobs jobs delete no content

func NewJobsJobsDeleteNoContent

func NewJobsJobsDeleteNoContent() *JobsJobsDeleteNoContent

NewJobsJobsDeleteNoContent creates a JobsJobsDeleteNoContent with default headers values

func (*JobsJobsDeleteNoContent) Error

func (o *JobsJobsDeleteNoContent) Error() string

type JobsJobsDeleteParams

type JobsJobsDeleteParams struct {

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

	*/
	Search *string

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

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

func NewJobsJobsDeleteParams

func NewJobsJobsDeleteParams() *JobsJobsDeleteParams

NewJobsJobsDeleteParams creates a new JobsJobsDeleteParams object with the default values initialized.

func NewJobsJobsDeleteParamsWithContext

func NewJobsJobsDeleteParamsWithContext(ctx context.Context) *JobsJobsDeleteParams

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

func NewJobsJobsDeleteParamsWithHTTPClient

func NewJobsJobsDeleteParamsWithHTTPClient(client *http.Client) *JobsJobsDeleteParams

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

func NewJobsJobsDeleteParamsWithTimeout

func NewJobsJobsDeleteParamsWithTimeout(timeout time.Duration) *JobsJobsDeleteParams

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

func (*JobsJobsDeleteParams) SetContext

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

SetContext adds the context to the jobs jobs delete params

func (*JobsJobsDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs delete params

func (*JobsJobsDeleteParams) SetID

func (o *JobsJobsDeleteParams) SetID(id string)

SetID adds the id to the jobs jobs delete params

func (*JobsJobsDeleteParams) SetSearch

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

SetSearch adds the search to the jobs jobs delete params

func (*JobsJobsDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs delete params

func (*JobsJobsDeleteParams) WithContext

WithContext adds the context to the jobs jobs delete params

func (*JobsJobsDeleteParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the jobs jobs delete params

func (*JobsJobsDeleteParams) WithID

WithID adds the id to the jobs jobs delete params

func (*JobsJobsDeleteParams) WithSearch

func (o *JobsJobsDeleteParams) WithSearch(search *string) *JobsJobsDeleteParams

WithSearch adds the search to the jobs jobs delete params

func (*JobsJobsDeleteParams) WithTimeout

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

WithTimeout adds the timeout to the jobs jobs delete params

func (*JobsJobsDeleteParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type JobsJobsDeleteReader

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

JobsJobsDeleteReader is a Reader for the JobsJobsDelete structure.

func (*JobsJobsDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsExtraCredentialsListOK

type JobsJobsExtraCredentialsListOK struct {
}

JobsJobsExtraCredentialsListOK handles this case with default header values.

OK

func NewJobsJobsExtraCredentialsListOK

func NewJobsJobsExtraCredentialsListOK() *JobsJobsExtraCredentialsListOK

NewJobsJobsExtraCredentialsListOK creates a JobsJobsExtraCredentialsListOK with default headers values

func (*JobsJobsExtraCredentialsListOK) Error

type JobsJobsExtraCredentialsListParams

type JobsJobsExtraCredentialsListParams 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
}

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

func NewJobsJobsExtraCredentialsListParams

func NewJobsJobsExtraCredentialsListParams() *JobsJobsExtraCredentialsListParams

NewJobsJobsExtraCredentialsListParams creates a new JobsJobsExtraCredentialsListParams object with the default values initialized.

func NewJobsJobsExtraCredentialsListParamsWithContext

func NewJobsJobsExtraCredentialsListParamsWithContext(ctx context.Context) *JobsJobsExtraCredentialsListParams

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

func NewJobsJobsExtraCredentialsListParamsWithHTTPClient

func NewJobsJobsExtraCredentialsListParamsWithHTTPClient(client *http.Client) *JobsJobsExtraCredentialsListParams

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

func NewJobsJobsExtraCredentialsListParamsWithTimeout

func NewJobsJobsExtraCredentialsListParamsWithTimeout(timeout time.Duration) *JobsJobsExtraCredentialsListParams

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

func (*JobsJobsExtraCredentialsListParams) SetContext

SetContext adds the context to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) SetID

SetID adds the id to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) SetPage

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

SetPage adds the page to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) SetPageSize

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

SetPageSize adds the pageSize to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) SetSearch

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

SetSearch adds the search to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) WithContext

WithContext adds the context to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) WithID

WithID adds the id to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) WithPage

WithPage adds the page to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) WithPageSize

WithPageSize adds the pageSize to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) WithSearch

WithSearch adds the search to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs extra credentials list params

func (*JobsJobsExtraCredentialsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsExtraCredentialsListReader

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

JobsJobsExtraCredentialsListReader is a Reader for the JobsJobsExtraCredentialsList structure.

func (*JobsJobsExtraCredentialsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsJobEventsListOK

type JobsJobsJobEventsListOK struct {
}

JobsJobsJobEventsListOK handles this case with default header values.

OK

func NewJobsJobsJobEventsListOK

func NewJobsJobsJobEventsListOK() *JobsJobsJobEventsListOK

NewJobsJobsJobEventsListOK creates a JobsJobsJobEventsListOK with default headers values

func (*JobsJobsJobEventsListOK) Error

func (o *JobsJobsJobEventsListOK) Error() string

type JobsJobsJobEventsListParams

type JobsJobsJobEventsListParams 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
}

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

func NewJobsJobsJobEventsListParams

func NewJobsJobsJobEventsListParams() *JobsJobsJobEventsListParams

NewJobsJobsJobEventsListParams creates a new JobsJobsJobEventsListParams object with the default values initialized.

func NewJobsJobsJobEventsListParamsWithContext

func NewJobsJobsJobEventsListParamsWithContext(ctx context.Context) *JobsJobsJobEventsListParams

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

func NewJobsJobsJobEventsListParamsWithHTTPClient

func NewJobsJobsJobEventsListParamsWithHTTPClient(client *http.Client) *JobsJobsJobEventsListParams

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

func NewJobsJobsJobEventsListParamsWithTimeout

func NewJobsJobsJobEventsListParamsWithTimeout(timeout time.Duration) *JobsJobsJobEventsListParams

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

func (*JobsJobsJobEventsListParams) SetContext

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

SetContext adds the context to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) SetID

func (o *JobsJobsJobEventsListParams) SetID(id string)

SetID adds the id to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) SetPage

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

SetPage adds the page to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) SetPageSize

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

SetPageSize adds the pageSize to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) SetSearch

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

SetSearch adds the search to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) WithContext

WithContext adds the context to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) WithID

WithID adds the id to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) WithPage

WithPage adds the page to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) WithPageSize

WithPageSize adds the pageSize to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) WithSearch

WithSearch adds the search to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs job events list params

func (*JobsJobsJobEventsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsJobEventsListReader

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

JobsJobsJobEventsListReader is a Reader for the JobsJobsJobEventsList structure.

func (*JobsJobsJobEventsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsJobHostSummariesListOK

type JobsJobsJobHostSummariesListOK struct {
}

JobsJobsJobHostSummariesListOK handles this case with default header values.

OK

func NewJobsJobsJobHostSummariesListOK

func NewJobsJobsJobHostSummariesListOK() *JobsJobsJobHostSummariesListOK

NewJobsJobsJobHostSummariesListOK creates a JobsJobsJobHostSummariesListOK with default headers values

func (*JobsJobsJobHostSummariesListOK) Error

type JobsJobsJobHostSummariesListParams

type JobsJobsJobHostSummariesListParams 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
}

JobsJobsJobHostSummariesListParams contains all the parameters to send to the API endpoint for the jobs jobs job host summaries list operation typically these are written to a http.Request

func NewJobsJobsJobHostSummariesListParams

func NewJobsJobsJobHostSummariesListParams() *JobsJobsJobHostSummariesListParams

NewJobsJobsJobHostSummariesListParams creates a new JobsJobsJobHostSummariesListParams object with the default values initialized.

func NewJobsJobsJobHostSummariesListParamsWithContext

func NewJobsJobsJobHostSummariesListParamsWithContext(ctx context.Context) *JobsJobsJobHostSummariesListParams

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

func NewJobsJobsJobHostSummariesListParamsWithHTTPClient

func NewJobsJobsJobHostSummariesListParamsWithHTTPClient(client *http.Client) *JobsJobsJobHostSummariesListParams

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

func NewJobsJobsJobHostSummariesListParamsWithTimeout

func NewJobsJobsJobHostSummariesListParamsWithTimeout(timeout time.Duration) *JobsJobsJobHostSummariesListParams

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

func (*JobsJobsJobHostSummariesListParams) SetContext

SetContext adds the context to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) SetID

SetID adds the id to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) SetPage

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

SetPage adds the page to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) SetPageSize

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

SetPageSize adds the pageSize to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) SetSearch

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

SetSearch adds the search to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) WithContext

WithContext adds the context to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) WithID

WithID adds the id to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) WithPage

WithPage adds the page to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) WithPageSize

WithPageSize adds the pageSize to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) WithSearch

WithSearch adds the search to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs job host summaries list params

func (*JobsJobsJobHostSummariesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsJobHostSummariesListReader

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

JobsJobsJobHostSummariesListReader is a Reader for the JobsJobsJobHostSummariesList structure.

func (*JobsJobsJobHostSummariesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsLabelsListOK

type JobsJobsLabelsListOK struct {
}

JobsJobsLabelsListOK handles this case with default header values.

OK

func NewJobsJobsLabelsListOK

func NewJobsJobsLabelsListOK() *JobsJobsLabelsListOK

NewJobsJobsLabelsListOK creates a JobsJobsLabelsListOK with default headers values

func (*JobsJobsLabelsListOK) Error

func (o *JobsJobsLabelsListOK) Error() string

type JobsJobsLabelsListParams

type JobsJobsLabelsListParams 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
}

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

func NewJobsJobsLabelsListParams

func NewJobsJobsLabelsListParams() *JobsJobsLabelsListParams

NewJobsJobsLabelsListParams creates a new JobsJobsLabelsListParams object with the default values initialized.

func NewJobsJobsLabelsListParamsWithContext

func NewJobsJobsLabelsListParamsWithContext(ctx context.Context) *JobsJobsLabelsListParams

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

func NewJobsJobsLabelsListParamsWithHTTPClient

func NewJobsJobsLabelsListParamsWithHTTPClient(client *http.Client) *JobsJobsLabelsListParams

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

func NewJobsJobsLabelsListParamsWithTimeout

func NewJobsJobsLabelsListParamsWithTimeout(timeout time.Duration) *JobsJobsLabelsListParams

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

func (*JobsJobsLabelsListParams) SetContext

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

SetContext adds the context to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) SetID

func (o *JobsJobsLabelsListParams) SetID(id string)

SetID adds the id to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) SetPage

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

SetPage adds the page to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) SetPageSize

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

SetPageSize adds the pageSize to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) SetSearch

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

SetSearch adds the search to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) WithContext

WithContext adds the context to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) WithID

WithID adds the id to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) WithPage

WithPage adds the page to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) WithPageSize

func (o *JobsJobsLabelsListParams) WithPageSize(pageSize *int64) *JobsJobsLabelsListParams

WithPageSize adds the pageSize to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) WithSearch

WithSearch adds the search to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs labels list params

func (*JobsJobsLabelsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsLabelsListReader

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

JobsJobsLabelsListReader is a Reader for the JobsJobsLabelsList structure.

func (*JobsJobsLabelsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsListOK

type JobsJobsListOK struct {
}

JobsJobsListOK handles this case with default header values.

OK

func NewJobsJobsListOK

func NewJobsJobsListOK() *JobsJobsListOK

NewJobsJobsListOK creates a JobsJobsListOK with default headers values

func (*JobsJobsListOK) Error

func (o *JobsJobsListOK) Error() string

type JobsJobsListParams

type JobsJobsListParams 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
}

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

func NewJobsJobsListParams

func NewJobsJobsListParams() *JobsJobsListParams

NewJobsJobsListParams creates a new JobsJobsListParams object with the default values initialized.

func NewJobsJobsListParamsWithContext

func NewJobsJobsListParamsWithContext(ctx context.Context) *JobsJobsListParams

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

func NewJobsJobsListParamsWithHTTPClient

func NewJobsJobsListParamsWithHTTPClient(client *http.Client) *JobsJobsListParams

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

func NewJobsJobsListParamsWithTimeout

func NewJobsJobsListParamsWithTimeout(timeout time.Duration) *JobsJobsListParams

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

func (*JobsJobsListParams) SetContext

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

SetContext adds the context to the jobs jobs list params

func (*JobsJobsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs list params

func (*JobsJobsListParams) SetPage

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

SetPage adds the page to the jobs jobs list params

func (*JobsJobsListParams) SetPageSize

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

SetPageSize adds the pageSize to the jobs jobs list params

func (*JobsJobsListParams) SetSearch

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

SetSearch adds the search to the jobs jobs list params

func (*JobsJobsListParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs list params

func (*JobsJobsListParams) WithContext

WithContext adds the context to the jobs jobs list params

func (*JobsJobsListParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the jobs jobs list params

func (*JobsJobsListParams) WithPage

func (o *JobsJobsListParams) WithPage(page *int64) *JobsJobsListParams

WithPage adds the page to the jobs jobs list params

func (*JobsJobsListParams) WithPageSize

func (o *JobsJobsListParams) WithPageSize(pageSize *int64) *JobsJobsListParams

WithPageSize adds the pageSize to the jobs jobs list params

func (*JobsJobsListParams) WithSearch

func (o *JobsJobsListParams) WithSearch(search *string) *JobsJobsListParams

WithSearch adds the search to the jobs jobs list params

func (*JobsJobsListParams) WithTimeout

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

WithTimeout adds the timeout to the jobs jobs list params

func (*JobsJobsListParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type JobsJobsListReader

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

JobsJobsListReader is a Reader for the JobsJobsList structure.

func (*JobsJobsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsNotificationsListOK

type JobsJobsNotificationsListOK struct {
}

JobsJobsNotificationsListOK handles this case with default header values.

OK

func NewJobsJobsNotificationsListOK

func NewJobsJobsNotificationsListOK() *JobsJobsNotificationsListOK

NewJobsJobsNotificationsListOK creates a JobsJobsNotificationsListOK with default headers values

func (*JobsJobsNotificationsListOK) Error

type JobsJobsNotificationsListParams

type JobsJobsNotificationsListParams 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
}

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

func NewJobsJobsNotificationsListParams

func NewJobsJobsNotificationsListParams() *JobsJobsNotificationsListParams

NewJobsJobsNotificationsListParams creates a new JobsJobsNotificationsListParams object with the default values initialized.

func NewJobsJobsNotificationsListParamsWithContext

func NewJobsJobsNotificationsListParamsWithContext(ctx context.Context) *JobsJobsNotificationsListParams

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

func NewJobsJobsNotificationsListParamsWithHTTPClient

func NewJobsJobsNotificationsListParamsWithHTTPClient(client *http.Client) *JobsJobsNotificationsListParams

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

func NewJobsJobsNotificationsListParamsWithTimeout

func NewJobsJobsNotificationsListParamsWithTimeout(timeout time.Duration) *JobsJobsNotificationsListParams

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

func (*JobsJobsNotificationsListParams) SetContext

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

SetContext adds the context to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) SetID

SetID adds the id to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) SetPage

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

SetPage adds the page to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) SetPageSize

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

SetPageSize adds the pageSize to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) SetSearch

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

SetSearch adds the search to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) WithContext

WithContext adds the context to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) WithID

WithID adds the id to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) WithPage

WithPage adds the page to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) WithPageSize

WithPageSize adds the pageSize to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) WithSearch

WithSearch adds the search to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs notifications list params

func (*JobsJobsNotificationsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsNotificationsListReader

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

JobsJobsNotificationsListReader is a Reader for the JobsJobsNotificationsList structure.

func (*JobsJobsNotificationsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsRead0OK

type JobsJobsRead0OK struct {
}

JobsJobsRead0OK handles this case with default header values.

OK

func NewJobsJobsRead0OK

func NewJobsJobsRead0OK() *JobsJobsRead0OK

NewJobsJobsRead0OK creates a JobsJobsRead0OK with default headers values

func (*JobsJobsRead0OK) Error

func (o *JobsJobsRead0OK) Error() string

type JobsJobsRead0Params

type JobsJobsRead0Params struct {

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

	*/
	Search *string

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

JobsJobsRead0Params contains all the parameters to send to the API endpoint for the jobs jobs read 0 operation typically these are written to a http.Request

func NewJobsJobsRead0Params

func NewJobsJobsRead0Params() *JobsJobsRead0Params

NewJobsJobsRead0Params creates a new JobsJobsRead0Params object with the default values initialized.

func NewJobsJobsRead0ParamsWithContext

func NewJobsJobsRead0ParamsWithContext(ctx context.Context) *JobsJobsRead0Params

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

func NewJobsJobsRead0ParamsWithHTTPClient

func NewJobsJobsRead0ParamsWithHTTPClient(client *http.Client) *JobsJobsRead0Params

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

func NewJobsJobsRead0ParamsWithTimeout

func NewJobsJobsRead0ParamsWithTimeout(timeout time.Duration) *JobsJobsRead0Params

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

func (*JobsJobsRead0Params) SetContext

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

SetContext adds the context to the jobs jobs read 0 params

func (*JobsJobsRead0Params) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs read 0 params

func (*JobsJobsRead0Params) SetID

func (o *JobsJobsRead0Params) SetID(id string)

SetID adds the id to the jobs jobs read 0 params

func (*JobsJobsRead0Params) SetSearch

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

SetSearch adds the search to the jobs jobs read 0 params

func (*JobsJobsRead0Params) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs read 0 params

func (*JobsJobsRead0Params) WithContext

WithContext adds the context to the jobs jobs read 0 params

func (*JobsJobsRead0Params) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the jobs jobs read 0 params

func (*JobsJobsRead0Params) WithID

WithID adds the id to the jobs jobs read 0 params

func (*JobsJobsRead0Params) WithSearch

func (o *JobsJobsRead0Params) WithSearch(search *string) *JobsJobsRead0Params

WithSearch adds the search to the jobs jobs read 0 params

func (*JobsJobsRead0Params) WithTimeout

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

WithTimeout adds the timeout to the jobs jobs read 0 params

func (*JobsJobsRead0Params) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type JobsJobsRead0Reader

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

JobsJobsRead0Reader is a Reader for the JobsJobsRead0 structure.

func (*JobsJobsRead0Reader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsRelaunchCreateCreated

type JobsJobsRelaunchCreateCreated struct {
}

JobsJobsRelaunchCreateCreated handles this case with default header values.

JobsJobsRelaunchCreateCreated jobs jobs relaunch create created

func NewJobsJobsRelaunchCreateCreated

func NewJobsJobsRelaunchCreateCreated() *JobsJobsRelaunchCreateCreated

NewJobsJobsRelaunchCreateCreated creates a JobsJobsRelaunchCreateCreated with default headers values

func (*JobsJobsRelaunchCreateCreated) Error

type JobsJobsRelaunchCreateForbidden

type JobsJobsRelaunchCreateForbidden struct {
}

JobsJobsRelaunchCreateForbidden handles this case with default header values.

No Permission Response

func NewJobsJobsRelaunchCreateForbidden

func NewJobsJobsRelaunchCreateForbidden() *JobsJobsRelaunchCreateForbidden

NewJobsJobsRelaunchCreateForbidden creates a JobsJobsRelaunchCreateForbidden with default headers values

func (*JobsJobsRelaunchCreateForbidden) Error

type JobsJobsRelaunchCreateParams

type JobsJobsRelaunchCreateParams struct {

	/*Data*/
	Data interface{}
	/*ID*/
	ID string

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

JobsJobsRelaunchCreateParams contains all the parameters to send to the API endpoint for the jobs jobs relaunch create operation typically these are written to a http.Request

func NewJobsJobsRelaunchCreateParams

func NewJobsJobsRelaunchCreateParams() *JobsJobsRelaunchCreateParams

NewJobsJobsRelaunchCreateParams creates a new JobsJobsRelaunchCreateParams object with the default values initialized.

func NewJobsJobsRelaunchCreateParamsWithContext

func NewJobsJobsRelaunchCreateParamsWithContext(ctx context.Context) *JobsJobsRelaunchCreateParams

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

func NewJobsJobsRelaunchCreateParamsWithHTTPClient

func NewJobsJobsRelaunchCreateParamsWithHTTPClient(client *http.Client) *JobsJobsRelaunchCreateParams

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

func NewJobsJobsRelaunchCreateParamsWithTimeout

func NewJobsJobsRelaunchCreateParamsWithTimeout(timeout time.Duration) *JobsJobsRelaunchCreateParams

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

func (*JobsJobsRelaunchCreateParams) SetContext

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

SetContext adds the context to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) SetData

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

SetData adds the data to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) SetID

func (o *JobsJobsRelaunchCreateParams) SetID(id string)

SetID adds the id to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) WithContext

WithContext adds the context to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) WithData

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

WithData adds the data to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) WithID

WithID adds the id to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs relaunch create params

func (*JobsJobsRelaunchCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsRelaunchCreateReader

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

JobsJobsRelaunchCreateReader is a Reader for the JobsJobsRelaunchCreate structure.

func (*JobsJobsRelaunchCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsRelaunchReadOK

type JobsJobsRelaunchReadOK struct {
}

JobsJobsRelaunchReadOK handles this case with default header values.

OK

func NewJobsJobsRelaunchReadOK

func NewJobsJobsRelaunchReadOK() *JobsJobsRelaunchReadOK

NewJobsJobsRelaunchReadOK creates a JobsJobsRelaunchReadOK with default headers values

func (*JobsJobsRelaunchReadOK) Error

func (o *JobsJobsRelaunchReadOK) Error() string

type JobsJobsRelaunchReadParams

type JobsJobsRelaunchReadParams struct {

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

	*/
	Search *string

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

JobsJobsRelaunchReadParams contains all the parameters to send to the API endpoint for the jobs jobs relaunch read operation typically these are written to a http.Request

func NewJobsJobsRelaunchReadParams

func NewJobsJobsRelaunchReadParams() *JobsJobsRelaunchReadParams

NewJobsJobsRelaunchReadParams creates a new JobsJobsRelaunchReadParams object with the default values initialized.

func NewJobsJobsRelaunchReadParamsWithContext

func NewJobsJobsRelaunchReadParamsWithContext(ctx context.Context) *JobsJobsRelaunchReadParams

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

func NewJobsJobsRelaunchReadParamsWithHTTPClient

func NewJobsJobsRelaunchReadParamsWithHTTPClient(client *http.Client) *JobsJobsRelaunchReadParams

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

func NewJobsJobsRelaunchReadParamsWithTimeout

func NewJobsJobsRelaunchReadParamsWithTimeout(timeout time.Duration) *JobsJobsRelaunchReadParams

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

func (*JobsJobsRelaunchReadParams) SetContext

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

SetContext adds the context to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) SetID

func (o *JobsJobsRelaunchReadParams) SetID(id string)

SetID adds the id to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) SetSearch

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

SetSearch adds the search to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) WithContext

WithContext adds the context to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) WithID

WithID adds the id to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) WithSearch

WithSearch adds the search to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs relaunch read params

func (*JobsJobsRelaunchReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsRelaunchReadReader

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

JobsJobsRelaunchReadReader is a Reader for the JobsJobsRelaunchRead structure.

func (*JobsJobsRelaunchReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type JobsJobsStdoutReadOK

type JobsJobsStdoutReadOK struct {
}

JobsJobsStdoutReadOK handles this case with default header values.

OK

func NewJobsJobsStdoutReadOK

func NewJobsJobsStdoutReadOK() *JobsJobsStdoutReadOK

NewJobsJobsStdoutReadOK creates a JobsJobsStdoutReadOK with default headers values

func (*JobsJobsStdoutReadOK) Error

func (o *JobsJobsStdoutReadOK) Error() string

type JobsJobsStdoutReadParams

type JobsJobsStdoutReadParams struct {

	/*ID*/
	ID string

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

JobsJobsStdoutReadParams contains all the parameters to send to the API endpoint for the jobs jobs stdout read operation typically these are written to a http.Request

func NewJobsJobsStdoutReadParams

func NewJobsJobsStdoutReadParams() *JobsJobsStdoutReadParams

NewJobsJobsStdoutReadParams creates a new JobsJobsStdoutReadParams object with the default values initialized.

func NewJobsJobsStdoutReadParamsWithContext

func NewJobsJobsStdoutReadParamsWithContext(ctx context.Context) *JobsJobsStdoutReadParams

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

func NewJobsJobsStdoutReadParamsWithHTTPClient

func NewJobsJobsStdoutReadParamsWithHTTPClient(client *http.Client) *JobsJobsStdoutReadParams

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

func NewJobsJobsStdoutReadParamsWithTimeout

func NewJobsJobsStdoutReadParamsWithTimeout(timeout time.Duration) *JobsJobsStdoutReadParams

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

func (*JobsJobsStdoutReadParams) SetContext

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

SetContext adds the context to the jobs jobs stdout read params

func (*JobsJobsStdoutReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the jobs jobs stdout read params

func (*JobsJobsStdoutReadParams) SetID

func (o *JobsJobsStdoutReadParams) SetID(id string)

SetID adds the id to the jobs jobs stdout read params

func (*JobsJobsStdoutReadParams) SetTimeout

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

SetTimeout adds the timeout to the jobs jobs stdout read params

func (*JobsJobsStdoutReadParams) WithContext

WithContext adds the context to the jobs jobs stdout read params

func (*JobsJobsStdoutReadParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the jobs jobs stdout read params

func (*JobsJobsStdoutReadParams) WithID

WithID adds the id to the jobs jobs stdout read params

func (*JobsJobsStdoutReadParams) WithTimeout

WithTimeout adds the timeout to the jobs jobs stdout read params

func (*JobsJobsStdoutReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type JobsJobsStdoutReadReader

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

JobsJobsStdoutReadReader is a Reader for the JobsJobsStdoutRead structure.

func (*JobsJobsStdoutReadReader) ReadResponse

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