workflow_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 workflow jobs API

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) WorkflowJobsWorkflowJobsActivityStreamList

func (a *Client) WorkflowJobsWorkflowJobsActivityStreamList(params *WorkflowJobsWorkflowJobsActivityStreamListParams) (*WorkflowJobsWorkflowJobsActivityStreamListOK, error)
WorkflowJobsWorkflowJobsActivityStreamList lists activity streams for a workflow job

Make a GET request to this resource to retrieve a list of activity streams associated with the selected workflow 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) WorkflowJobsWorkflowJobsCancelCreate

func (a *Client) WorkflowJobsWorkflowJobsCancelCreate(params *WorkflowJobsWorkflowJobsCancelCreateParams) (*WorkflowJobsWorkflowJobsCancelCreateCreated, error)
WorkflowJobsWorkflowJobsCancelCreate cancels workflow job

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

  • `can_cancel`: Indicates whether this workflow job is in a state that can be canceled (boolean, read-only)

Make a POST request to this endpoint to submit a request to cancel a pending or running workflow job. The response status code will be 202 if the request to cancel was successfully submitted, or 405 if the workflow job cannot be canceled.

func (*Client) WorkflowJobsWorkflowJobsCancelRead

func (a *Client) WorkflowJobsWorkflowJobsCancelRead(params *WorkflowJobsWorkflowJobsCancelReadParams) (*WorkflowJobsWorkflowJobsCancelReadOK, error)
WorkflowJobsWorkflowJobsCancelRead cancels workflow job

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

  • `can_cancel`: Indicates whether this workflow job is in a state that can be canceled (boolean, read-only)

Make a POST request to this endpoint to submit a request to cancel a pending or running workflow job. The response status code will be 202 if the request to cancel was successfully submitted, or 405 if the workflow job cannot be canceled.

func (*Client) WorkflowJobsWorkflowJobsDelete

func (a *Client) WorkflowJobsWorkflowJobsDelete(params *WorkflowJobsWorkflowJobsDeleteParams) (*WorkflowJobsWorkflowJobsDeleteNoContent, error)
WorkflowJobsWorkflowJobsDelete deletes a workflow job

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

func (*Client) WorkflowJobsWorkflowJobsLabelsList

func (a *Client) WorkflowJobsWorkflowJobsLabelsList(params *WorkflowJobsWorkflowJobsLabelsListParams) (*WorkflowJobsWorkflowJobsLabelsListOK, error)
WorkflowJobsWorkflowJobsLabelsList lists labels for a workflow job

Make a GET request to this resource to retrieve a list of labels associated with the selected workflow 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) WorkflowJobsWorkflowJobsList

func (a *Client) WorkflowJobsWorkflowJobsList(params *WorkflowJobsWorkflowJobsListParams) (*WorkflowJobsWorkflowJobsListOK, error)
WorkflowJobsWorkflowJobsList lists workflow jobs

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

The resulting data structure contains:

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

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

## Results

Each workflow job data structure includes the following fields:

* `id`: Database ID for this workflow job. (integer) * `type`: Data type for this workflow job. (choice) * `url`: URL for this workflow 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 workflow job was created. (datetime) * `modified`: Timestamp when this workflow job was last modified. (datetime) * `name`: Name of this workflow job. (string) * `description`: Optional description of this workflow 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) * `workflow_job_template`: (id) * `extra_vars`: (json) * `allow_simultaneous`: (boolean) * `job_template`: If automatically created for a sliced job run, the job template the workflow job was created from. (id) * `is_sliced_job`: (boolean) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id) * `limit`: (string) * `scm_branch`: (string) * `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 workflow 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) WorkflowJobsWorkflowJobsNotificationsList

func (a *Client) WorkflowJobsWorkflowJobsNotificationsList(params *WorkflowJobsWorkflowJobsNotificationsListParams) (*WorkflowJobsWorkflowJobsNotificationsListOK, error)
WorkflowJobsWorkflowJobsNotificationsList lists notifications for a workflow job

Make a GET request to this resource to retrieve a list of notifications associated with the selected workflow 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) WorkflowJobsWorkflowJobsRead

func (a *Client) WorkflowJobsWorkflowJobsRead(params *WorkflowJobsWorkflowJobsReadParams) (*WorkflowJobsWorkflowJobsReadOK, error)
WorkflowJobsWorkflowJobsRead retrieves a workflow job

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

* `id`: Database ID for this workflow job. (integer) * `type`: Data type for this workflow job. (choice) * `url`: URL for this workflow 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 workflow job was created. (datetime) * `modified`: Timestamp when this workflow job was last modified. (datetime) * `name`: Name of this workflow job. (string) * `description`: Optional description of this workflow 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_args`: (string) * `job_cwd`: (string) * `job_env`: (json) * `job_explanation`: A status field to indicate the state of the job if it wasn't able to run and capture stdout (string) * `result_traceback`: (string) * `workflow_job_template`: (id) * `extra_vars`: (json) * `allow_simultaneous`: (boolean) * `job_template`: If automatically created for a sliced job run, the job template the workflow job was created from. (id) * `is_sliced_job`: (boolean) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id) * `limit`: (string) * `scm_branch`: (string) * `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)

func (*Client) WorkflowJobsWorkflowJobsRelaunchCreate

func (a *Client) WorkflowJobsWorkflowJobsRelaunchCreate(params *WorkflowJobsWorkflowJobsRelaunchCreateParams) (*WorkflowJobsWorkflowJobsRelaunchCreateCreated, error)
WorkflowJobsWorkflowJobsRelaunchCreate relaunches a workflow job

Make a POST request to this endpoint to launch a workflow job identical to the parent workflow job. This will spawn jobs, project updates, or inventory updates based on the unified job templates referenced in the workflow nodes in the workflow job. No POST data is accepted for this action.

If successful, the response status code will be 201 and serialized data of the new workflow job will be returned.

func (*Client) WorkflowJobsWorkflowJobsRelaunchList

func (a *Client) WorkflowJobsWorkflowJobsRelaunchList(params *WorkflowJobsWorkflowJobsRelaunchListParams) (*WorkflowJobsWorkflowJobsRelaunchListOK, error)
WorkflowJobsWorkflowJobsRelaunchList relaunches a workflow job

Make a POST request to this endpoint to launch a workflow job identical to the parent workflow job. This will spawn jobs, project updates, or inventory updates based on the unified job templates referenced in the workflow nodes in the workflow job. No POST data is accepted for this action.

If successful, the response status code will be 201 and serialized data of the new workflow job will be returned.

func (*Client) WorkflowJobsWorkflowJobsWorkflowNodesList

func (a *Client) WorkflowJobsWorkflowJobsWorkflowNodesList(params *WorkflowJobsWorkflowJobsWorkflowNodesListParams) (*WorkflowJobsWorkflowJobsWorkflowNodesListOK, error)
WorkflowJobsWorkflowJobsWorkflowNodesList lists workflow job nodes for a workflow job

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

The resulting data structure contains:

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

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

## Results

Each workflow job node data structure includes the following fields:

* `id`: Database ID for this workflow job node. (integer) * `type`: Data type for this workflow job node. (choice) * `url`: URL for this workflow job node. (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 workflow job node was created. (datetime) * `modified`: Timestamp when this workflow job node was last modified. (datetime) * `extra_data`: (json) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id) * `scm_branch`: (string) * `job_type`: (choice)

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

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

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

* `job`: (id) * `workflow_job`: (id) * `unified_job_template`: (id) * `success_nodes`: (field) * `failure_nodes`: (field) * `always_nodes`: (field) * `all_parents_must_converge`: If enabled then the node will only run if all of the parent nodes have met the criteria to reach this node (boolean) * `do_not_run`: Indicates that a job will not be created when True. Workflow runtime semantics will mark this True if the node is in a path that will decidedly not be ran. A value of False means the node may not run. (boolean) * `identifier`: An identifier coresponding to the workflow job template node that this node was created from. (string)

## Sorting

To specify that workflow job nodes 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

type ClientService

type ClientService interface {
	WorkflowJobsWorkflowJobsActivityStreamList(params *WorkflowJobsWorkflowJobsActivityStreamListParams) (*WorkflowJobsWorkflowJobsActivityStreamListOK, error)

	WorkflowJobsWorkflowJobsCancelCreate(params *WorkflowJobsWorkflowJobsCancelCreateParams) (*WorkflowJobsWorkflowJobsCancelCreateCreated, error)

	WorkflowJobsWorkflowJobsCancelRead(params *WorkflowJobsWorkflowJobsCancelReadParams) (*WorkflowJobsWorkflowJobsCancelReadOK, error)

	WorkflowJobsWorkflowJobsDelete(params *WorkflowJobsWorkflowJobsDeleteParams) (*WorkflowJobsWorkflowJobsDeleteNoContent, error)

	WorkflowJobsWorkflowJobsLabelsList(params *WorkflowJobsWorkflowJobsLabelsListParams) (*WorkflowJobsWorkflowJobsLabelsListOK, error)

	WorkflowJobsWorkflowJobsList(params *WorkflowJobsWorkflowJobsListParams) (*WorkflowJobsWorkflowJobsListOK, error)

	WorkflowJobsWorkflowJobsNotificationsList(params *WorkflowJobsWorkflowJobsNotificationsListParams) (*WorkflowJobsWorkflowJobsNotificationsListOK, error)

	WorkflowJobsWorkflowJobsRead(params *WorkflowJobsWorkflowJobsReadParams) (*WorkflowJobsWorkflowJobsReadOK, error)

	WorkflowJobsWorkflowJobsRelaunchCreate(params *WorkflowJobsWorkflowJobsRelaunchCreateParams) (*WorkflowJobsWorkflowJobsRelaunchCreateCreated, error)

	WorkflowJobsWorkflowJobsRelaunchList(params *WorkflowJobsWorkflowJobsRelaunchListParams) (*WorkflowJobsWorkflowJobsRelaunchListOK, error)

	WorkflowJobsWorkflowJobsWorkflowNodesList(params *WorkflowJobsWorkflowJobsWorkflowNodesListParams) (*WorkflowJobsWorkflowJobsWorkflowNodesListOK, 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 workflow jobs API client.

type WorkflowJobsWorkflowJobsActivityStreamListOK

type WorkflowJobsWorkflowJobsActivityStreamListOK struct {
}

WorkflowJobsWorkflowJobsActivityStreamListOK handles this case with default header values.

OK

func NewWorkflowJobsWorkflowJobsActivityStreamListOK

func NewWorkflowJobsWorkflowJobsActivityStreamListOK() *WorkflowJobsWorkflowJobsActivityStreamListOK

NewWorkflowJobsWorkflowJobsActivityStreamListOK creates a WorkflowJobsWorkflowJobsActivityStreamListOK with default headers values

func (*WorkflowJobsWorkflowJobsActivityStreamListOK) Error

type WorkflowJobsWorkflowJobsActivityStreamListParams

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

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

func NewWorkflowJobsWorkflowJobsActivityStreamListParams

func NewWorkflowJobsWorkflowJobsActivityStreamListParams() *WorkflowJobsWorkflowJobsActivityStreamListParams

NewWorkflowJobsWorkflowJobsActivityStreamListParams creates a new WorkflowJobsWorkflowJobsActivityStreamListParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsActivityStreamListParamsWithContext

func NewWorkflowJobsWorkflowJobsActivityStreamListParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsActivityStreamListParams

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

func NewWorkflowJobsWorkflowJobsActivityStreamListParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsActivityStreamListParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsActivityStreamListParams

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

func NewWorkflowJobsWorkflowJobsActivityStreamListParamsWithTimeout

func NewWorkflowJobsWorkflowJobsActivityStreamListParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsActivityStreamListParams

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) SetContext

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) SetHTTPClient

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) SetID

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) SetPage

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) SetPageSize

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

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) SetSearch

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) SetTimeout

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) WithContext

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) WithHTTPClient

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) WithID

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) WithPage

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) WithPageSize

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) WithSearch

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) WithTimeout

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

func (*WorkflowJobsWorkflowJobsActivityStreamListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsActivityStreamListReader

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

WorkflowJobsWorkflowJobsActivityStreamListReader is a Reader for the WorkflowJobsWorkflowJobsActivityStreamList structure.

func (*WorkflowJobsWorkflowJobsActivityStreamListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsCancelCreateCreated

type WorkflowJobsWorkflowJobsCancelCreateCreated struct {
}

WorkflowJobsWorkflowJobsCancelCreateCreated handles this case with default header values.

WorkflowJobsWorkflowJobsCancelCreateCreated workflow jobs workflow jobs cancel create created

func NewWorkflowJobsWorkflowJobsCancelCreateCreated

func NewWorkflowJobsWorkflowJobsCancelCreateCreated() *WorkflowJobsWorkflowJobsCancelCreateCreated

NewWorkflowJobsWorkflowJobsCancelCreateCreated creates a WorkflowJobsWorkflowJobsCancelCreateCreated with default headers values

func (*WorkflowJobsWorkflowJobsCancelCreateCreated) Error

type WorkflowJobsWorkflowJobsCancelCreateParams

type WorkflowJobsWorkflowJobsCancelCreateParams struct {

	/*ID*/
	ID string

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

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

func NewWorkflowJobsWorkflowJobsCancelCreateParams

func NewWorkflowJobsWorkflowJobsCancelCreateParams() *WorkflowJobsWorkflowJobsCancelCreateParams

NewWorkflowJobsWorkflowJobsCancelCreateParams creates a new WorkflowJobsWorkflowJobsCancelCreateParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsCancelCreateParamsWithContext

func NewWorkflowJobsWorkflowJobsCancelCreateParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsCancelCreateParams

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

func NewWorkflowJobsWorkflowJobsCancelCreateParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsCancelCreateParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsCancelCreateParams

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

func NewWorkflowJobsWorkflowJobsCancelCreateParamsWithTimeout

func NewWorkflowJobsWorkflowJobsCancelCreateParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsCancelCreateParams

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

func (*WorkflowJobsWorkflowJobsCancelCreateParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs cancel create params

func (*WorkflowJobsWorkflowJobsCancelCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs cancel create params

func (*WorkflowJobsWorkflowJobsCancelCreateParams) SetID

SetID adds the id to the workflow jobs workflow jobs cancel create params

func (*WorkflowJobsWorkflowJobsCancelCreateParams) SetTimeout

SetTimeout adds the timeout to the workflow jobs workflow jobs cancel create params

func (*WorkflowJobsWorkflowJobsCancelCreateParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs cancel create params

func (*WorkflowJobsWorkflowJobsCancelCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs cancel create params

func (*WorkflowJobsWorkflowJobsCancelCreateParams) WithID

WithID adds the id to the workflow jobs workflow jobs cancel create params

func (*WorkflowJobsWorkflowJobsCancelCreateParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs cancel create params

func (*WorkflowJobsWorkflowJobsCancelCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsCancelCreateReader

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

WorkflowJobsWorkflowJobsCancelCreateReader is a Reader for the WorkflowJobsWorkflowJobsCancelCreate structure.

func (*WorkflowJobsWorkflowJobsCancelCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsCancelReadOK

type WorkflowJobsWorkflowJobsCancelReadOK struct {
}

WorkflowJobsWorkflowJobsCancelReadOK handles this case with default header values.

OK

func NewWorkflowJobsWorkflowJobsCancelReadOK

func NewWorkflowJobsWorkflowJobsCancelReadOK() *WorkflowJobsWorkflowJobsCancelReadOK

NewWorkflowJobsWorkflowJobsCancelReadOK creates a WorkflowJobsWorkflowJobsCancelReadOK with default headers values

func (*WorkflowJobsWorkflowJobsCancelReadOK) Error

type WorkflowJobsWorkflowJobsCancelReadParams

type WorkflowJobsWorkflowJobsCancelReadParams struct {

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

	*/
	Search *string

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

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

func NewWorkflowJobsWorkflowJobsCancelReadParams

func NewWorkflowJobsWorkflowJobsCancelReadParams() *WorkflowJobsWorkflowJobsCancelReadParams

NewWorkflowJobsWorkflowJobsCancelReadParams creates a new WorkflowJobsWorkflowJobsCancelReadParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsCancelReadParamsWithContext

func NewWorkflowJobsWorkflowJobsCancelReadParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsCancelReadParams

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

func NewWorkflowJobsWorkflowJobsCancelReadParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsCancelReadParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsCancelReadParams

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

func NewWorkflowJobsWorkflowJobsCancelReadParamsWithTimeout

func NewWorkflowJobsWorkflowJobsCancelReadParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsCancelReadParams

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

func (*WorkflowJobsWorkflowJobsCancelReadParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) SetID

SetID adds the id to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) SetSearch

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

SetSearch adds the search to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) SetTimeout

SetTimeout adds the timeout to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) WithID

WithID adds the id to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) WithSearch

WithSearch adds the search to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs cancel read params

func (*WorkflowJobsWorkflowJobsCancelReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsCancelReadReader

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

WorkflowJobsWorkflowJobsCancelReadReader is a Reader for the WorkflowJobsWorkflowJobsCancelRead structure.

func (*WorkflowJobsWorkflowJobsCancelReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsDeleteForbidden

type WorkflowJobsWorkflowJobsDeleteForbidden struct {
}

WorkflowJobsWorkflowJobsDeleteForbidden handles this case with default header values.

No Permission Response

func NewWorkflowJobsWorkflowJobsDeleteForbidden

func NewWorkflowJobsWorkflowJobsDeleteForbidden() *WorkflowJobsWorkflowJobsDeleteForbidden

NewWorkflowJobsWorkflowJobsDeleteForbidden creates a WorkflowJobsWorkflowJobsDeleteForbidden with default headers values

func (*WorkflowJobsWorkflowJobsDeleteForbidden) Error

type WorkflowJobsWorkflowJobsDeleteNoContent

type WorkflowJobsWorkflowJobsDeleteNoContent struct {
}

WorkflowJobsWorkflowJobsDeleteNoContent handles this case with default header values.

WorkflowJobsWorkflowJobsDeleteNoContent workflow jobs workflow jobs delete no content

func NewWorkflowJobsWorkflowJobsDeleteNoContent

func NewWorkflowJobsWorkflowJobsDeleteNoContent() *WorkflowJobsWorkflowJobsDeleteNoContent

NewWorkflowJobsWorkflowJobsDeleteNoContent creates a WorkflowJobsWorkflowJobsDeleteNoContent with default headers values

func (*WorkflowJobsWorkflowJobsDeleteNoContent) Error

type WorkflowJobsWorkflowJobsDeleteParams

type WorkflowJobsWorkflowJobsDeleteParams struct {

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

	*/
	Search *string

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

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

func NewWorkflowJobsWorkflowJobsDeleteParams

func NewWorkflowJobsWorkflowJobsDeleteParams() *WorkflowJobsWorkflowJobsDeleteParams

NewWorkflowJobsWorkflowJobsDeleteParams creates a new WorkflowJobsWorkflowJobsDeleteParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsDeleteParamsWithContext

func NewWorkflowJobsWorkflowJobsDeleteParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsDeleteParams

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

func NewWorkflowJobsWorkflowJobsDeleteParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsDeleteParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsDeleteParams

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

func NewWorkflowJobsWorkflowJobsDeleteParamsWithTimeout

func NewWorkflowJobsWorkflowJobsDeleteParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsDeleteParams

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

func (*WorkflowJobsWorkflowJobsDeleteParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) SetID

SetID adds the id to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) SetSearch

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

SetSearch adds the search to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) WithID

WithID adds the id to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) WithSearch

WithSearch adds the search to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs delete params

func (*WorkflowJobsWorkflowJobsDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsDeleteReader

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

WorkflowJobsWorkflowJobsDeleteReader is a Reader for the WorkflowJobsWorkflowJobsDelete structure.

func (*WorkflowJobsWorkflowJobsDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsLabelsListOK

type WorkflowJobsWorkflowJobsLabelsListOK struct {
}

WorkflowJobsWorkflowJobsLabelsListOK handles this case with default header values.

OK

func NewWorkflowJobsWorkflowJobsLabelsListOK

func NewWorkflowJobsWorkflowJobsLabelsListOK() *WorkflowJobsWorkflowJobsLabelsListOK

NewWorkflowJobsWorkflowJobsLabelsListOK creates a WorkflowJobsWorkflowJobsLabelsListOK with default headers values

func (*WorkflowJobsWorkflowJobsLabelsListOK) Error

type WorkflowJobsWorkflowJobsLabelsListParams

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

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

func NewWorkflowJobsWorkflowJobsLabelsListParams

func NewWorkflowJobsWorkflowJobsLabelsListParams() *WorkflowJobsWorkflowJobsLabelsListParams

NewWorkflowJobsWorkflowJobsLabelsListParams creates a new WorkflowJobsWorkflowJobsLabelsListParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsLabelsListParamsWithContext

func NewWorkflowJobsWorkflowJobsLabelsListParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsLabelsListParams

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

func NewWorkflowJobsWorkflowJobsLabelsListParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsLabelsListParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsLabelsListParams

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

func NewWorkflowJobsWorkflowJobsLabelsListParamsWithTimeout

func NewWorkflowJobsWorkflowJobsLabelsListParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsLabelsListParams

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

func (*WorkflowJobsWorkflowJobsLabelsListParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) SetID

SetID adds the id to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) SetPage

SetPage adds the page to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) SetPageSize

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

SetPageSize adds the pageSize to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) SetSearch

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

SetSearch adds the search to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) SetTimeout

SetTimeout adds the timeout to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) WithID

WithID adds the id to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) WithPage

WithPage adds the page to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) WithPageSize

WithPageSize adds the pageSize to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) WithSearch

WithSearch adds the search to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs labels list params

func (*WorkflowJobsWorkflowJobsLabelsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsLabelsListReader

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

WorkflowJobsWorkflowJobsLabelsListReader is a Reader for the WorkflowJobsWorkflowJobsLabelsList structure.

func (*WorkflowJobsWorkflowJobsLabelsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsListOK

type WorkflowJobsWorkflowJobsListOK struct {
}

WorkflowJobsWorkflowJobsListOK handles this case with default header values.

OK

func NewWorkflowJobsWorkflowJobsListOK

func NewWorkflowJobsWorkflowJobsListOK() *WorkflowJobsWorkflowJobsListOK

NewWorkflowJobsWorkflowJobsListOK creates a WorkflowJobsWorkflowJobsListOK with default headers values

func (*WorkflowJobsWorkflowJobsListOK) Error

type WorkflowJobsWorkflowJobsListParams

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

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

func NewWorkflowJobsWorkflowJobsListParams

func NewWorkflowJobsWorkflowJobsListParams() *WorkflowJobsWorkflowJobsListParams

NewWorkflowJobsWorkflowJobsListParams creates a new WorkflowJobsWorkflowJobsListParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsListParamsWithContext

func NewWorkflowJobsWorkflowJobsListParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsListParams

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

func NewWorkflowJobsWorkflowJobsListParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsListParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsListParams

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

func NewWorkflowJobsWorkflowJobsListParamsWithTimeout

func NewWorkflowJobsWorkflowJobsListParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsListParams

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

func (*WorkflowJobsWorkflowJobsListParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) SetPage

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

SetPage adds the page to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) SetPageSize

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

SetPageSize adds the pageSize to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) SetSearch

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

SetSearch adds the search to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) SetTimeout

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

SetTimeout adds the timeout to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) WithPage

WithPage adds the page to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) WithPageSize

WithPageSize adds the pageSize to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) WithSearch

WithSearch adds the search to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs list params

func (*WorkflowJobsWorkflowJobsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsListReader

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

WorkflowJobsWorkflowJobsListReader is a Reader for the WorkflowJobsWorkflowJobsList structure.

func (*WorkflowJobsWorkflowJobsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsNotificationsListOK

type WorkflowJobsWorkflowJobsNotificationsListOK struct {
}

WorkflowJobsWorkflowJobsNotificationsListOK handles this case with default header values.

OK

func NewWorkflowJobsWorkflowJobsNotificationsListOK

func NewWorkflowJobsWorkflowJobsNotificationsListOK() *WorkflowJobsWorkflowJobsNotificationsListOK

NewWorkflowJobsWorkflowJobsNotificationsListOK creates a WorkflowJobsWorkflowJobsNotificationsListOK with default headers values

func (*WorkflowJobsWorkflowJobsNotificationsListOK) Error

type WorkflowJobsWorkflowJobsNotificationsListParams

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

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

func NewWorkflowJobsWorkflowJobsNotificationsListParams

func NewWorkflowJobsWorkflowJobsNotificationsListParams() *WorkflowJobsWorkflowJobsNotificationsListParams

NewWorkflowJobsWorkflowJobsNotificationsListParams creates a new WorkflowJobsWorkflowJobsNotificationsListParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsNotificationsListParamsWithContext

func NewWorkflowJobsWorkflowJobsNotificationsListParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsNotificationsListParams

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

func NewWorkflowJobsWorkflowJobsNotificationsListParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsNotificationsListParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsNotificationsListParams

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

func NewWorkflowJobsWorkflowJobsNotificationsListParamsWithTimeout

func NewWorkflowJobsWorkflowJobsNotificationsListParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsNotificationsListParams

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

func (*WorkflowJobsWorkflowJobsNotificationsListParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) SetID

SetID adds the id to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) SetPage

SetPage adds the page to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) SetPageSize

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

SetPageSize adds the pageSize to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) SetSearch

SetSearch adds the search to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) SetTimeout

SetTimeout adds the timeout to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) WithID

WithID adds the id to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) WithPage

WithPage adds the page to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) WithPageSize

WithPageSize adds the pageSize to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) WithSearch

WithSearch adds the search to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs notifications list params

func (*WorkflowJobsWorkflowJobsNotificationsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsNotificationsListReader

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

WorkflowJobsWorkflowJobsNotificationsListReader is a Reader for the WorkflowJobsWorkflowJobsNotificationsList structure.

func (*WorkflowJobsWorkflowJobsNotificationsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsReadOK

type WorkflowJobsWorkflowJobsReadOK struct {
}

WorkflowJobsWorkflowJobsReadOK handles this case with default header values.

OK

func NewWorkflowJobsWorkflowJobsReadOK

func NewWorkflowJobsWorkflowJobsReadOK() *WorkflowJobsWorkflowJobsReadOK

NewWorkflowJobsWorkflowJobsReadOK creates a WorkflowJobsWorkflowJobsReadOK with default headers values

func (*WorkflowJobsWorkflowJobsReadOK) Error

type WorkflowJobsWorkflowJobsReadParams

type WorkflowJobsWorkflowJobsReadParams struct {

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

	*/
	Search *string

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

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

func NewWorkflowJobsWorkflowJobsReadParams

func NewWorkflowJobsWorkflowJobsReadParams() *WorkflowJobsWorkflowJobsReadParams

NewWorkflowJobsWorkflowJobsReadParams creates a new WorkflowJobsWorkflowJobsReadParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsReadParamsWithContext

func NewWorkflowJobsWorkflowJobsReadParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsReadParams

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

func NewWorkflowJobsWorkflowJobsReadParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsReadParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsReadParams

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

func NewWorkflowJobsWorkflowJobsReadParamsWithTimeout

func NewWorkflowJobsWorkflowJobsReadParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsReadParams

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

func (*WorkflowJobsWorkflowJobsReadParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) SetID

SetID adds the id to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) SetSearch

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

SetSearch adds the search to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) SetTimeout

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

SetTimeout adds the timeout to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) WithID

WithID adds the id to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) WithSearch

WithSearch adds the search to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs read params

func (*WorkflowJobsWorkflowJobsReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsReadReader

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

WorkflowJobsWorkflowJobsReadReader is a Reader for the WorkflowJobsWorkflowJobsRead structure.

func (*WorkflowJobsWorkflowJobsReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsRelaunchCreateCreated

type WorkflowJobsWorkflowJobsRelaunchCreateCreated struct {
}

WorkflowJobsWorkflowJobsRelaunchCreateCreated handles this case with default header values.

WorkflowJobsWorkflowJobsRelaunchCreateCreated workflow jobs workflow jobs relaunch create created

func NewWorkflowJobsWorkflowJobsRelaunchCreateCreated

func NewWorkflowJobsWorkflowJobsRelaunchCreateCreated() *WorkflowJobsWorkflowJobsRelaunchCreateCreated

NewWorkflowJobsWorkflowJobsRelaunchCreateCreated creates a WorkflowJobsWorkflowJobsRelaunchCreateCreated with default headers values

func (*WorkflowJobsWorkflowJobsRelaunchCreateCreated) Error

type WorkflowJobsWorkflowJobsRelaunchCreateParams

type WorkflowJobsWorkflowJobsRelaunchCreateParams struct {

	/*ID*/
	ID string

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

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

func NewWorkflowJobsWorkflowJobsRelaunchCreateParams

func NewWorkflowJobsWorkflowJobsRelaunchCreateParams() *WorkflowJobsWorkflowJobsRelaunchCreateParams

NewWorkflowJobsWorkflowJobsRelaunchCreateParams creates a new WorkflowJobsWorkflowJobsRelaunchCreateParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsRelaunchCreateParamsWithContext

func NewWorkflowJobsWorkflowJobsRelaunchCreateParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsRelaunchCreateParams

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

func NewWorkflowJobsWorkflowJobsRelaunchCreateParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsRelaunchCreateParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsRelaunchCreateParams

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

func NewWorkflowJobsWorkflowJobsRelaunchCreateParamsWithTimeout

func NewWorkflowJobsWorkflowJobsRelaunchCreateParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsRelaunchCreateParams

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

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs relaunch create params

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs relaunch create params

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) SetID

SetID adds the id to the workflow jobs workflow jobs relaunch create params

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) SetTimeout

SetTimeout adds the timeout to the workflow jobs workflow jobs relaunch create params

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs relaunch create params

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs relaunch create params

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) WithID

WithID adds the id to the workflow jobs workflow jobs relaunch create params

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs relaunch create params

func (*WorkflowJobsWorkflowJobsRelaunchCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsRelaunchCreateReader

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

WorkflowJobsWorkflowJobsRelaunchCreateReader is a Reader for the WorkflowJobsWorkflowJobsRelaunchCreate structure.

func (*WorkflowJobsWorkflowJobsRelaunchCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsRelaunchListOK

type WorkflowJobsWorkflowJobsRelaunchListOK struct {
}

WorkflowJobsWorkflowJobsRelaunchListOK handles this case with default header values.

OK

func NewWorkflowJobsWorkflowJobsRelaunchListOK

func NewWorkflowJobsWorkflowJobsRelaunchListOK() *WorkflowJobsWorkflowJobsRelaunchListOK

NewWorkflowJobsWorkflowJobsRelaunchListOK creates a WorkflowJobsWorkflowJobsRelaunchListOK with default headers values

func (*WorkflowJobsWorkflowJobsRelaunchListOK) Error

type WorkflowJobsWorkflowJobsRelaunchListParams

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

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

func NewWorkflowJobsWorkflowJobsRelaunchListParams

func NewWorkflowJobsWorkflowJobsRelaunchListParams() *WorkflowJobsWorkflowJobsRelaunchListParams

NewWorkflowJobsWorkflowJobsRelaunchListParams creates a new WorkflowJobsWorkflowJobsRelaunchListParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsRelaunchListParamsWithContext

func NewWorkflowJobsWorkflowJobsRelaunchListParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsRelaunchListParams

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

func NewWorkflowJobsWorkflowJobsRelaunchListParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsRelaunchListParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsRelaunchListParams

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

func NewWorkflowJobsWorkflowJobsRelaunchListParamsWithTimeout

func NewWorkflowJobsWorkflowJobsRelaunchListParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsRelaunchListParams

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

func (*WorkflowJobsWorkflowJobsRelaunchListParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) SetID

SetID adds the id to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) SetPage

SetPage adds the page to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) SetPageSize

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

SetPageSize adds the pageSize to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) SetSearch

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

SetSearch adds the search to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) SetTimeout

SetTimeout adds the timeout to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) WithID

WithID adds the id to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) WithPage

WithPage adds the page to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) WithPageSize

WithPageSize adds the pageSize to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) WithSearch

WithSearch adds the search to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs relaunch list params

func (*WorkflowJobsWorkflowJobsRelaunchListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsRelaunchListReader

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

WorkflowJobsWorkflowJobsRelaunchListReader is a Reader for the WorkflowJobsWorkflowJobsRelaunchList structure.

func (*WorkflowJobsWorkflowJobsRelaunchListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type WorkflowJobsWorkflowJobsWorkflowNodesListOK

type WorkflowJobsWorkflowJobsWorkflowNodesListOK struct {
}

WorkflowJobsWorkflowJobsWorkflowNodesListOK handles this case with default header values.

OK

func NewWorkflowJobsWorkflowJobsWorkflowNodesListOK

func NewWorkflowJobsWorkflowJobsWorkflowNodesListOK() *WorkflowJobsWorkflowJobsWorkflowNodesListOK

NewWorkflowJobsWorkflowJobsWorkflowNodesListOK creates a WorkflowJobsWorkflowJobsWorkflowNodesListOK with default headers values

func (*WorkflowJobsWorkflowJobsWorkflowNodesListOK) Error

type WorkflowJobsWorkflowJobsWorkflowNodesListParams

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

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

func NewWorkflowJobsWorkflowJobsWorkflowNodesListParams

func NewWorkflowJobsWorkflowJobsWorkflowNodesListParams() *WorkflowJobsWorkflowJobsWorkflowNodesListParams

NewWorkflowJobsWorkflowJobsWorkflowNodesListParams creates a new WorkflowJobsWorkflowJobsWorkflowNodesListParams object with the default values initialized.

func NewWorkflowJobsWorkflowJobsWorkflowNodesListParamsWithContext

func NewWorkflowJobsWorkflowJobsWorkflowNodesListParamsWithContext(ctx context.Context) *WorkflowJobsWorkflowJobsWorkflowNodesListParams

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

func NewWorkflowJobsWorkflowJobsWorkflowNodesListParamsWithHTTPClient

func NewWorkflowJobsWorkflowJobsWorkflowNodesListParamsWithHTTPClient(client *http.Client) *WorkflowJobsWorkflowJobsWorkflowNodesListParams

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

func NewWorkflowJobsWorkflowJobsWorkflowNodesListParamsWithTimeout

func NewWorkflowJobsWorkflowJobsWorkflowNodesListParamsWithTimeout(timeout time.Duration) *WorkflowJobsWorkflowJobsWorkflowNodesListParams

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

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) SetContext

SetContext adds the context to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) SetID

SetID adds the id to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) SetPage

SetPage adds the page to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) SetPageSize

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

SetPageSize adds the pageSize to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) SetSearch

SetSearch adds the search to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) SetTimeout

SetTimeout adds the timeout to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) WithContext

WithContext adds the context to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) WithID

WithID adds the id to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) WithPage

WithPage adds the page to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) WithPageSize

WithPageSize adds the pageSize to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) WithSearch

WithSearch adds the search to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) WithTimeout

WithTimeout adds the timeout to the workflow jobs workflow jobs workflow nodes list params

func (*WorkflowJobsWorkflowJobsWorkflowNodesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type WorkflowJobsWorkflowJobsWorkflowNodesListReader

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

WorkflowJobsWorkflowJobsWorkflowNodesListReader is a Reader for the WorkflowJobsWorkflowJobsWorkflowNodesList structure.

func (*WorkflowJobsWorkflowJobsWorkflowNodesListReader) ReadResponse

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