organizations

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

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

Go to latest
Published: Sep 17, 2020 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for organizations API

func (*Client) OrganizationsOrganizationsAccessListList

func (a *Client) OrganizationsOrganizationsAccessListList(params *OrganizationsOrganizationsAccessListListParams) (*OrganizationsOrganizationsAccessListListOK, error)
OrganizationsOrganizationsAccessListList lists users

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

The resulting data structure contains:

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

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

## Results

Each user data structure includes the following fields:

* `id`: Database ID for this user. (integer) * `type`: Data type for this user. (choice) * `url`: URL for this user. (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 user was created. (datetime) * `username`: Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. (string) * `first_name`: (string) * `last_name`: (string) * `email`: (string) * `is_superuser`: Designates that this user has all permissions without explicitly assigning them. (boolean) * `is_system_auditor`: (boolean)

* `ldap_dn`: (string) * `last_login`: (datetime) * `external_account`: Set if the account is managed by an external service (field)

## Sorting

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

?order_by=username

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

?order_by=-username

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

?order_by=username,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) OrganizationsOrganizationsActivityStreamList

func (a *Client) OrganizationsOrganizationsActivityStreamList(params *OrganizationsOrganizationsActivityStreamListParams) (*OrganizationsOrganizationsActivityStreamListOK, error)
OrganizationsOrganizationsActivityStreamList lists activity streams for an organization

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

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

func (a *Client) OrganizationsOrganizationsAdminsCreate(params *OrganizationsOrganizationsAdminsCreateParams) (*OrganizationsOrganizationsAdminsCreateCreated, error)
OrganizationsOrganizationsAdminsCreate creates an admin user for an organization

Make a POST request to this resource with the following admin user fields to create a new admin user associated with this organization.

* `username`: Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. (string, required) * `first_name`: (string, default=`""`) * `last_name`: (string, default=`""`) * `email`: (string, default=`""`) * `is_superuser`: Designates that this user has all permissions without explicitly assigning them. (boolean, default=`False`) * `is_system_auditor`: (boolean, default=`False`) * `password`: Write-only field used to change the password. (string, default=`""`)

Add Admin Users for an Organization:

Make a POST request to this resource with only an `id` field to associate an existing admin user with this organization.

Remove Admin Users from this Organization:

Make a POST request to this resource with `id` and `disassociate` fields to remove the admin user from this organization

without deleting the admin user.

func (*Client) OrganizationsOrganizationsAdminsList

func (a *Client) OrganizationsOrganizationsAdminsList(params *OrganizationsOrganizationsAdminsListParams) (*OrganizationsOrganizationsAdminsListOK, error)
OrganizationsOrganizationsAdminsList lists admin users for an organization

Make a GET request to this resource to retrieve a list of admin users associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each admin user data structure includes the following fields:

* `id`: Database ID for this user. (integer) * `type`: Data type for this user. (choice) * `url`: URL for this user. (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 user was created. (datetime) * `username`: Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. (string) * `first_name`: (string) * `last_name`: (string) * `email`: (string) * `is_superuser`: Designates that this user has all permissions without explicitly assigning them. (boolean) * `is_system_auditor`: (boolean)

* `ldap_dn`: (string) * `last_login`: (datetime) * `external_account`: Set if the account is managed by an external service (field)

## Sorting

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

?order_by=username

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

?order_by=-username

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

?order_by=username,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) OrganizationsOrganizationsApplicationsCreate

OrganizationsOrganizationsApplicationsCreate creates an application for an organization

Make a POST request to this resource with the following application fields to create a new application associated with this organization.

* `name`: Name of this application. (string, required) * `description`: Optional description of this application. (string, default=`""`)

* `client_type`: Set to Public or Confidential depending on how secure the client device is. (choice, required)

  • `confidential`: Confidential
  • `public`: Public

* `redirect_uris`: Allowed URIs list, space separated (string, default=`""`) * `authorization_grant_type`: The Grant type the user must use for acquire tokens for this application. (choice, required)

  • `authorization-code`: Authorization code
  • `password`: Resource owner password-based

* `skip_authorization`: Set True to skip authorization step for completely trusted applications. (boolean, default=`False`)

func (*Client) OrganizationsOrganizationsApplicationsList

func (a *Client) OrganizationsOrganizationsApplicationsList(params *OrganizationsOrganizationsApplicationsListParams) (*OrganizationsOrganizationsApplicationsListOK, error)
OrganizationsOrganizationsApplicationsList lists applications for an organization

Make a GET request to this resource to retrieve a list of applications associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each application data structure includes the following fields:

* `id`: Database ID for this application. (integer) * `type`: Data type for this application. (choice) * `url`: URL for this application. (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 application was created. (datetime) * `modified`: Timestamp when this application was last modified. (datetime) * `name`: Name of this application. (string) * `description`: Optional description of this application. (string) * `client_id`: (string) * `client_secret`: Used for more stringent verification of access to an application when creating a token. (string) * `client_type`: Set to Public or Confidential depending on how secure the client device is. (choice)

  • `confidential`: Confidential
  • `public`: Public

* `redirect_uris`: Allowed URIs list, space separated (string) * `authorization_grant_type`: The Grant type the user must use for acquire tokens for this application. (choice)

  • `authorization-code`: Authorization code
  • `password`: Resource owner password-based

* `skip_authorization`: Set True to skip authorization step for completely trusted applications. (boolean) * `organization`: Organization containing this application. (id)

## Sorting

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

func (a *Client) OrganizationsOrganizationsCreate(params *OrganizationsOrganizationsCreateParams) (*OrganizationsOrganizationsCreateCreated, error)
OrganizationsOrganizationsCreate creates an organization

Make a POST request to this resource with the following organization fields to create a new organization:

* `name`: Name of this organization. (string, required) * `description`: Optional description of this organization. (string, default=`""`) * `max_hosts`: Maximum number of hosts allowed to be managed by this organization. (integer, default=`0`) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string, default=`""`)

func (*Client) OrganizationsOrganizationsCredentialsCreate

OrganizationsOrganizationsCredentialsCreate creates a credential for an organization

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

* `name`: Name of this credential. (string, required) * `description`: Optional description of this credential. (string, default=`""`)

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

func (*Client) OrganizationsOrganizationsCredentialsList

func (a *Client) OrganizationsOrganizationsCredentialsList(params *OrganizationsOrganizationsCredentialsListParams) (*OrganizationsOrganizationsCredentialsListOK, error)
OrganizationsOrganizationsCredentialsList lists credentials for an organization

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

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`: Inherit permissions from organization roles. If provided on creation, do not give either user or team. (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) OrganizationsOrganizationsDelete

func (a *Client) OrganizationsOrganizationsDelete(params *OrganizationsOrganizationsDeleteParams) (*OrganizationsOrganizationsDeleteNoContent, error)
OrganizationsOrganizationsDelete deletes an organization

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

func (*Client) OrganizationsOrganizationsInstanceGroupsCreate

OrganizationsOrganizationsInstanceGroupsCreate creates an instance group for an organization

Make a POST request to this resource with the following instance group fields to create a new instance group associated with this organization.

* `name`: Name of this instance group. (string, required)

* `credential`: (id, default=“) * `policy_instance_percentage`: Minimum percentage of all instances that will be automatically assigned to this group when new instances come online. (integer, default=`0`) * `policy_instance_minimum`: Static minimum number of Instances that will be automatically assign to this group when new instances come online. (integer, default=`0`) * `policy_instance_list`: List of exact-match Instances that will be assigned to this group (json, default=“) * `pod_spec_override`: (string, default=`""`)

Add Instance Groups for an Organization:

Make a POST request to this resource with only an `id` field to associate an existing instance group with this organization.

Remove Instance Groups from this Organization:

Make a POST request to this resource with `id` and `disassociate` fields to remove the instance group from this organization

without deleting the instance group.

func (*Client) OrganizationsOrganizationsInstanceGroupsList

func (a *Client) OrganizationsOrganizationsInstanceGroupsList(params *OrganizationsOrganizationsInstanceGroupsListParams) (*OrganizationsOrganizationsInstanceGroupsListOK, error)
OrganizationsOrganizationsInstanceGroupsList lists instance groups for an organization

Make a GET request to this resource to retrieve a list of instance groups associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each instance group data structure includes the following fields:

* `id`: Database ID for this instance group. (integer) * `type`: Data type for this instance group. (choice) * `url`: URL for this instance group. (string) * `related`: Data structure with URLs of related resources. (object) * `name`: Name of this instance group. (string) * `created`: Timestamp when this instance group was created. (datetime) * `modified`: Timestamp when this instance group was last modified. (datetime) * `capacity`: (field) * `committed_capacity`: (field) * `consumed_capacity`: (field) * `percent_capacity_remaining`: (field) * `jobs_running`: Count of jobs in the running or waiting state that are targeted for this instance group (integer) * `jobs_total`: Count of all jobs that target this instance group (integer) * `instances`: (field) * `controller`: Instance Group to remotely control this group. (id) * `is_controller`: Indicates whether instance group controls any other group (boolean) * `is_isolated`: Indicates whether instances in this group are isolated.Isolated groups have a designated controller group. (boolean) * `is_containerized`: Indicates whether instances in this group are containerized.Containerized groups have a designated Openshift or Kubernetes cluster. (boolean) * `credential`: (id) * `policy_instance_percentage`: Minimum percentage of all instances that will be automatically assigned to this group when new instances come online. (integer) * `policy_instance_minimum`: Static minimum number of Instances that will be automatically assign to this group when new instances come online. (integer) * `policy_instance_list`: List of exact-match Instances that will be assigned to this group (json) * `pod_spec_override`: (string) * `summary_fields`: Data structure with name/description for related resources. The output for some objects may be limited for performance reasons. (object)

## Sorting

To specify that instance groups 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) OrganizationsOrganizationsInventoriesList

func (a *Client) OrganizationsOrganizationsInventoriesList(params *OrganizationsOrganizationsInventoriesListParams) (*OrganizationsOrganizationsInventoriesListOK, error)
OrganizationsOrganizationsInventoriesList lists inventories for an organization

Make a GET request to this resource to retrieve a list of inventories associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each inventory data structure includes the following fields:

* `id`: Database ID for this inventory. (integer) * `type`: Data type for this inventory. (choice) * `url`: URL for this inventory. (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 inventory was created. (datetime) * `modified`: Timestamp when this inventory was last modified. (datetime) * `name`: Name of this inventory. (string) * `description`: Optional description of this inventory. (string) * `organization`: Organization containing this inventory. (id) * `kind`: Kind of inventory being represented. (choice)

  • `""`: Hosts have a direct link to this inventory.
  • `smart`: Hosts for inventory generated using the host_filter property.

* `host_filter`: Filter that will be applied to the hosts of this inventory. (string) * `variables`: Inventory variables in JSON or YAML format. (json) * `has_active_failures`: This field is deprecated and will be removed in a future release. Flag indicating whether any hosts in this inventory have failed. (boolean) * `total_hosts`: This field is deprecated and will be removed in a future release. Total number of hosts in this inventory. (integer) * `hosts_with_active_failures`: This field is deprecated and will be removed in a future release. Number of hosts in this inventory with active failures. (integer) * `total_groups`: This field is deprecated and will be removed in a future release. Total number of groups in this inventory. (integer) * `has_inventory_sources`: This field is deprecated and will be removed in a future release. Flag indicating whether this inventory has any external inventory sources. (boolean) * `total_inventory_sources`: Total number of external inventory sources configured within this inventory. (integer) * `inventory_sources_with_failures`: Number of external inventory sources in this inventory with failures. (integer) * `insights_credential`: Credentials to be used by hosts belonging to this inventory when accessing Red Hat Insights API. (id) * `pending_deletion`: Flag indicating the inventory is being deleted. (boolean)

## Sorting

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

OrganizationsOrganizationsJobTemplatesCreate creates a job template for an organization

Make a POST request to this resource with the following job template fields to create a new job template associated with this organization.

* `name`: Name of this job template. (string, required) * `description`: Optional description of this job template. (string, default=`""`) * `job_type`: (choice)

  • `run`: Run (default)
  • `check`: Check

* `inventory`: (id, default=“) * `project`: (id, default=“) * `playbook`: (string, default=`""`) * `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, default=`""`) * `forks`: (integer, default=`0`) * `limit`: (string, default=`""`) * `verbosity`: (choice)

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

* `extra_vars`: (json, default=“) * `job_tags`: (string, default=`""`) * `force_handlers`: (boolean, default=`False`) * `skip_tags`: (string, default=`""`) * `start_at_task`: (string, default=`""`) * `timeout`: The amount of time (in seconds) to run before the task is canceled. (integer, default=`0`) * `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, default=`False`)

* `host_config_key`: (string, default=`""`) * `ask_scm_branch_on_launch`: (boolean, default=`False`) * `ask_diff_mode_on_launch`: (boolean, default=`False`) * `ask_variables_on_launch`: (boolean, default=`False`) * `ask_limit_on_launch`: (boolean, default=`False`) * `ask_tags_on_launch`: (boolean, default=`False`) * `ask_skip_tags_on_launch`: (boolean, default=`False`) * `ask_job_type_on_launch`: (boolean, default=`False`) * `ask_verbosity_on_launch`: (boolean, default=`False`) * `ask_inventory_on_launch`: (boolean, default=`False`) * `ask_credential_on_launch`: (boolean, default=`False`) * `survey_enabled`: (boolean, default=`False`) * `become_enabled`: (boolean, default=`False`) * `diff_mode`: If enabled, textual changes made to any templated files on the host are shown in the standard output (boolean, default=`False`) * `allow_simultaneous`: (boolean, default=`False`) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string, default=`""`) * `job_slice_count`: The number of jobs to slice into at runtime. Will cause the Job Template to launch a workflow if value is greater than 1. (integer, default=`1`) * `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, default=“)

func (*Client) OrganizationsOrganizationsJobTemplatesList

func (a *Client) OrganizationsOrganizationsJobTemplatesList(params *OrganizationsOrganizationsJobTemplatesListParams) (*OrganizationsOrganizationsJobTemplatesListOK, error)
OrganizationsOrganizationsJobTemplatesList lists job templates for an organization

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

The resulting data structure contains:

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

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

## Results

Each job template data structure includes the following fields:

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

  • `run`: Run
  • `check`: Check

* `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 template. (id) * `last_job_run`: (datetime) * `last_job_failed`: (boolean) * `next_job_run`: (datetime) * `status`: (choice)

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

* `host_config_key`: (string) * `ask_scm_branch_on_launch`: (boolean) * `ask_diff_mode_on_launch`: (boolean) * `ask_variables_on_launch`: (boolean) * `ask_limit_on_launch`: (boolean) * `ask_tags_on_launch`: (boolean) * `ask_skip_tags_on_launch`: (boolean) * `ask_job_type_on_launch`: (boolean) * `ask_verbosity_on_launch`: (boolean) * `ask_inventory_on_launch`: (boolean) * `ask_credential_on_launch`: (boolean) * `survey_enabled`: (boolean) * `become_enabled`: (boolean) * `diff_mode`: If enabled, textual changes made to any templated files on the host are shown in the standard output (boolean) * `allow_simultaneous`: (boolean) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string) * `job_slice_count`: The number of jobs to slice into at runtime. Will cause the Job Template to launch a workflow if value is greater than 1. (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)

## Sorting

To specify that job templates 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) OrganizationsOrganizationsList

func (a *Client) OrganizationsOrganizationsList(params *OrganizationsOrganizationsListParams) (*OrganizationsOrganizationsListOK, error)
OrganizationsOrganizationsList lists organizations

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

The resulting data structure contains:

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

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

## Results

Each organization data structure includes the following fields:

* `id`: Database ID for this organization. (integer) * `type`: Data type for this organization. (choice) * `url`: URL for this organization. (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 organization was created. (datetime) * `modified`: Timestamp when this organization was last modified. (datetime) * `name`: Name of this organization. (string) * `description`: Optional description of this organization. (string) * `max_hosts`: Maximum number of hosts allowed to be managed by this organization. (integer) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string)

## Sorting

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

OrganizationsOrganizationsNotificationTemplatesApprovalsCreate creates a notification template for an organization

Make a POST request to this resource with the following notification template fields to create a new notification template associated with this organization.

* `name`: Name of this notification template. (string, required) * `description`: Optional description of this notification template. (string, default=`""`) * `organization`: (id, required) * `notification_type`: (choice, required)

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

* `notification_configuration`: (json, default=`{}`) * `messages`: Optional custom messages for notification template. (json, default=`{'started': None, 'success': None, 'error': None, 'workflow_approval': None}`)

Add Notification Templates for an Organization:

Make a POST request to this resource with only an `id` field to associate an existing notification template with this organization.

Remove Notification Templates from this Organization:

Make a POST request to this resource with `id` and `disassociate` fields to remove the notification template from this organization

without deleting the notification template.

func (*Client) OrganizationsOrganizationsNotificationTemplatesApprovalsList

OrganizationsOrganizationsNotificationTemplatesApprovalsList lists notification templates for an organization

Make a GET request to this resource to retrieve a list of notification templates associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each notification template data structure includes the following fields:

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

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

* `notification_configuration`: (json) * `messages`: Optional custom messages for notification template. (json)

## Sorting

To specify that notification templates 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) OrganizationsOrganizationsNotificationTemplatesCreate

OrganizationsOrganizationsNotificationTemplatesCreate creates a notification template for an organization

Make a POST request to this resource with the following notification template fields to create a new notification template associated with this organization.

* `name`: Name of this notification template. (string, required) * `description`: Optional description of this notification template. (string, default=`""`)

* `notification_type`: (choice, required)

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

* `notification_configuration`: (json, default=`{}`) * `messages`: Optional custom messages for notification template. (json, default=`{'started': None, 'success': None, 'error': None, 'workflow_approval': None}`)

Remove Organization Notification Templates:

Make a POST request to this resource with `id` and `disassociate` fields to delete the associated notification template.

{
    "id": 123,
    "disassociate": true
}

func (*Client) OrganizationsOrganizationsNotificationTemplatesErrorCreate

OrganizationsOrganizationsNotificationTemplatesErrorCreate creates a notification template for an organization

Make a POST request to this resource with the following notification template fields to create a new notification template associated with this organization.

* `name`: Name of this notification template. (string, required) * `description`: Optional description of this notification template. (string, default=`""`) * `organization`: (id, required) * `notification_type`: (choice, required)

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

* `notification_configuration`: (json, default=`{}`) * `messages`: Optional custom messages for notification template. (json, default=`{'started': None, 'success': None, 'error': None, 'workflow_approval': None}`)

Add Notification Templates for an Organization:

Make a POST request to this resource with only an `id` field to associate an existing notification template with this organization.

Remove Notification Templates from this Organization:

Make a POST request to this resource with `id` and `disassociate` fields to remove the notification template from this organization

without deleting the notification template.

func (*Client) OrganizationsOrganizationsNotificationTemplatesErrorList

OrganizationsOrganizationsNotificationTemplatesErrorList lists notification templates for an organization

Make a GET request to this resource to retrieve a list of notification templates associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each notification template data structure includes the following fields:

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

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

* `notification_configuration`: (json) * `messages`: Optional custom messages for notification template. (json)

## Sorting

To specify that notification templates 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) OrganizationsOrganizationsNotificationTemplatesList

OrganizationsOrganizationsNotificationTemplatesList lists notification templates for an organization

Make a GET request to this resource to retrieve a list of notification templates associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each notification template data structure includes the following fields:

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

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

* `notification_configuration`: (json) * `messages`: Optional custom messages for notification template. (json)

## Sorting

To specify that notification templates 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) OrganizationsOrganizationsNotificationTemplatesStartedCreate

OrganizationsOrganizationsNotificationTemplatesStartedCreate creates a notification template for an organization

Make a POST request to this resource with the following notification template fields to create a new notification template associated with this organization.

* `name`: Name of this notification template. (string, required) * `description`: Optional description of this notification template. (string, default=`""`) * `organization`: (id, required) * `notification_type`: (choice, required)

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

* `notification_configuration`: (json, default=`{}`) * `messages`: Optional custom messages for notification template. (json, default=`{'started': None, 'success': None, 'error': None, 'workflow_approval': None}`)

Add Notification Templates for an Organization:

Make a POST request to this resource with only an `id` field to associate an existing notification template with this organization.

Remove Notification Templates from this Organization:

Make a POST request to this resource with `id` and `disassociate` fields to remove the notification template from this organization

without deleting the notification template.

func (*Client) OrganizationsOrganizationsNotificationTemplatesStartedList

OrganizationsOrganizationsNotificationTemplatesStartedList lists notification templates for an organization

Make a GET request to this resource to retrieve a list of notification templates associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each notification template data structure includes the following fields:

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

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

* `notification_configuration`: (json) * `messages`: Optional custom messages for notification template. (json)

## Sorting

To specify that notification templates 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) OrganizationsOrganizationsNotificationTemplatesSuccessCreate

OrganizationsOrganizationsNotificationTemplatesSuccessCreate creates a notification template for an organization

Make a POST request to this resource with the following notification template fields to create a new notification template associated with this organization.

* `name`: Name of this notification template. (string, required) * `description`: Optional description of this notification template. (string, default=`""`) * `organization`: (id, required) * `notification_type`: (choice, required)

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

* `notification_configuration`: (json, default=`{}`) * `messages`: Optional custom messages for notification template. (json, default=`{'started': None, 'success': None, 'error': None, 'workflow_approval': None}`)

Add Notification Templates for an Organization:

Make a POST request to this resource with only an `id` field to associate an existing notification template with this organization.

Remove Notification Templates from this Organization:

Make a POST request to this resource with `id` and `disassociate` fields to remove the notification template from this organization

without deleting the notification template.

func (*Client) OrganizationsOrganizationsNotificationTemplatesSuccessList

OrganizationsOrganizationsNotificationTemplatesSuccessList lists notification templates for an organization

Make a GET request to this resource to retrieve a list of notification templates associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each notification template data structure includes the following fields:

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

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

* `notification_configuration`: (json) * `messages`: Optional custom messages for notification template. (json)

## Sorting

To specify that notification templates 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) OrganizationsOrganizationsObjectRolesList

func (a *Client) OrganizationsOrganizationsObjectRolesList(params *OrganizationsOrganizationsObjectRolesListParams) (*OrganizationsOrganizationsObjectRolesListOK, error)
OrganizationsOrganizationsObjectRolesList lists roles for an organization

Make a GET request to this resource to retrieve a list of roles associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each role data structure includes the following fields:

* `id`: Database ID for this role. (integer) * `type`: Data type for this role. (choice) * `url`: URL for this role. (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) * `name`: Name of this role. (field) * `description`: Optional description of this role. (field)

## Sorting

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

func (a *Client) OrganizationsOrganizationsPartialUpdate(params *OrganizationsOrganizationsPartialUpdateParams) (*OrganizationsOrganizationsPartialUpdateOK, error)
OrganizationsOrganizationsPartialUpdate updates an organization

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

* `name`: Name of this organization. (string, required) * `description`: Optional description of this organization. (string, default=`""`) * `max_hosts`: Maximum number of hosts allowed to be managed by this organization. (integer, default=`0`) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string, default=`""`)

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

func (*Client) OrganizationsOrganizationsProjectsCreate

OrganizationsOrganizationsProjectsCreate creates a project for an organization

Make a POST request to this resource with the following project fields to create a new project associated with this organization.

* `name`: Name of this project. (string, required) * `description`: Optional description of this project. (string, default=`""`) * `local_path`: Local path (relative to PROJECTS_ROOT) containing playbooks and related files for this project. (string, default=`""`) * `scm_type`: Specifies the source control system used to store the project. (choice)

  • `""`: Manual (default)
  • `git`: Git
  • `hg`: Mercurial
  • `svn`: Subversion
  • `insights`: Red Hat Insights

* `scm_url`: The location where the project is stored. (string, default=`""`) * `scm_branch`: Specific branch, tag or commit to checkout. (string, default=`""`) * `scm_refspec`: For git projects, an additional refspec to fetch. (string, default=`""`) * `scm_clean`: Discard any local changes before syncing the project. (boolean, default=`False`) * `scm_delete_on_update`: Delete the project before syncing. (boolean, default=`False`) * `credential`: (id, default=“) * `timeout`: The amount of time (in seconds) to run before the task is canceled. (integer, default=`0`)

* `scm_update_on_launch`: Update the project when a job is launched that uses the project. (boolean, default=`False`) * `scm_update_cache_timeout`: The number of seconds after the last project update ran that a new project update will be launched as a job dependency. (integer, default=`0`) * `allow_override`: Allow changing the SCM branch or revision in a job template that uses this project. (boolean, default=`False`) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string, default=`""`)

func (*Client) OrganizationsOrganizationsProjectsList

func (a *Client) OrganizationsOrganizationsProjectsList(params *OrganizationsOrganizationsProjectsListParams) (*OrganizationsOrganizationsProjectsListOK, error)
OrganizationsOrganizationsProjectsList lists projects for an organization

Make a GET request to this resource to retrieve a list of projects associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each project data structure includes the following fields:

* `id`: Database ID for this project. (integer) * `type`: Data type for this project. (choice) * `url`: URL for this project. (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 project was created. (datetime) * `modified`: Timestamp when this project was last modified. (datetime) * `name`: Name of this project. (string) * `description`: Optional description of this project. (string) * `local_path`: Local path (relative to PROJECTS_ROOT) containing playbooks and related files for this project. (string) * `scm_type`: Specifies the source control system used to store the project. (choice)

  • `""`: Manual
  • `git`: Git
  • `hg`: Mercurial
  • `svn`: Subversion
  • `insights`: Red Hat Insights

* `scm_url`: The location where the project is stored. (string) * `scm_branch`: Specific branch, tag or commit to checkout. (string) * `scm_refspec`: For git projects, an additional refspec to fetch. (string) * `scm_clean`: Discard any local changes before syncing the project. (boolean) * `scm_delete_on_update`: Delete the project before syncing. (boolean) * `credential`: (id) * `timeout`: The amount of time (in seconds) to run before the task is canceled. (integer) * `scm_revision`: The last revision fetched by a project update (string) * `last_job_run`: (datetime) * `last_job_failed`: (boolean) * `next_job_run`: (datetime) * `status`: (choice)

  • `new`: New
  • `pending`: Pending
  • `waiting`: Waiting
  • `running`: Running
  • `successful`: Successful
  • `failed`: Failed
  • `error`: Error
  • `canceled`: Canceled
  • `never updated`: Never Updated
  • `ok`: OK
  • `missing`: Missing

* `organization`: The organization used to determine access to this template. (id) * `scm_update_on_launch`: Update the project when a job is launched that uses the project. (boolean) * `scm_update_cache_timeout`: The number of seconds after the last project update ran that a new project update will be launched as a job dependency. (integer) * `allow_override`: Allow changing the SCM branch or revision in a job template that uses this project. (boolean) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string) * `last_update_failed`: (boolean) * `last_updated`: (datetime)

## Sorting

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

func (a *Client) OrganizationsOrganizationsRead(params *OrganizationsOrganizationsReadParams) (*OrganizationsOrganizationsReadOK, error)
OrganizationsOrganizationsRead retrieves an organization

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

* `id`: Database ID for this organization. (integer) * `type`: Data type for this organization. (choice) * `url`: URL for this organization. (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 organization was created. (datetime) * `modified`: Timestamp when this organization was last modified. (datetime) * `name`: Name of this organization. (string) * `description`: Optional description of this organization. (string) * `max_hosts`: Maximum number of hosts allowed to be managed by this organization. (integer) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string)

func (*Client) OrganizationsOrganizationsTeamsCreate

func (a *Client) OrganizationsOrganizationsTeamsCreate(params *OrganizationsOrganizationsTeamsCreateParams) (*OrganizationsOrganizationsTeamsCreateCreated, error)
OrganizationsOrganizationsTeamsCreate creates a team for an organization

Make a POST request to this resource with the following team fields to create a new team associated with this organization.

* `name`: Name of this team. (string, required) * `description`: Optional description of this team. (string, default=`""`)

Remove Organization Teams:

Make a POST request to this resource with `id` and `disassociate` fields to delete the associated team.

{
    "id": 123,
    "disassociate": true
}

func (*Client) OrganizationsOrganizationsTeamsList

func (a *Client) OrganizationsOrganizationsTeamsList(params *OrganizationsOrganizationsTeamsListParams) (*OrganizationsOrganizationsTeamsListOK, error)
OrganizationsOrganizationsTeamsList lists teams for an organization

Make a GET request to this resource to retrieve a list of teams associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each team data structure includes the following fields:

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

## Sorting

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

func (a *Client) OrganizationsOrganizationsUpdate(params *OrganizationsOrganizationsUpdateParams) (*OrganizationsOrganizationsUpdateOK, error)
OrganizationsOrganizationsUpdate updates an organization

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

* `name`: Name of this organization. (string, required) * `description`: Optional description of this organization. (string, default=`""`) * `max_hosts`: Maximum number of hosts allowed to be managed by this organization. (integer, default=`0`) * `custom_virtualenv`: Local absolute file path containing a custom Python virtualenv to use (string, default=`""`)

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

func (*Client) OrganizationsOrganizationsUsersCreate

func (a *Client) OrganizationsOrganizationsUsersCreate(params *OrganizationsOrganizationsUsersCreateParams) (*OrganizationsOrganizationsUsersCreateCreated, error)
OrganizationsOrganizationsUsersCreate creates a user for an organization

Make a POST request to this resource with the following user fields to create a new user associated with this organization.

* `username`: Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. (string, required) * `first_name`: (string, default=`""`) * `last_name`: (string, default=`""`) * `email`: (string, default=`""`) * `is_superuser`: Designates that this user has all permissions without explicitly assigning them. (boolean, default=`False`) * `is_system_auditor`: (boolean, default=`False`) * `password`: Write-only field used to change the password. (string, default=`""`)

Add Users for an Organization:

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

Remove Users from this Organization:

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

without deleting the user.

func (*Client) OrganizationsOrganizationsUsersList

func (a *Client) OrganizationsOrganizationsUsersList(params *OrganizationsOrganizationsUsersListParams) (*OrganizationsOrganizationsUsersListOK, error)
OrganizationsOrganizationsUsersList lists users for an organization

Make a GET request to this resource to retrieve a list of users associated with the selected organization.

The resulting data structure contains:

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

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

## Results

Each user data structure includes the following fields:

* `id`: Database ID for this user. (integer) * `type`: Data type for this user. (choice) * `url`: URL for this user. (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 user was created. (datetime) * `username`: Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. (string) * `first_name`: (string) * `last_name`: (string) * `email`: (string) * `is_superuser`: Designates that this user has all permissions without explicitly assigning them. (boolean) * `is_system_auditor`: (boolean)

* `ldap_dn`: (string) * `last_login`: (datetime) * `external_account`: Set if the account is managed by an external service (field)

## Sorting

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

?order_by=username

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

?order_by=-username

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

?order_by=username,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) OrganizationsOrganizationsWorkflowJobTemplatesCreate

OrganizationsOrganizationsWorkflowJobTemplatesCreate creates a workflow job template for an organization

Make a POST request to this resource with the following workflow job template fields to create a new workflow job template associated with this organization.

* `name`: Name of this workflow job template. (string, required) * `description`: Optional description of this workflow job template. (string, default=`""`)

* `extra_vars`: (json, default=“)

* `survey_enabled`: (boolean, default=`False`) * `allow_simultaneous`: (boolean, default=`False`) * `ask_variables_on_launch`: (boolean, default=`False`) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id, default=“) * `limit`: (string, default=`""`) * `scm_branch`: (string, default=`""`) * `ask_inventory_on_launch`: (boolean, default=`False`) * `ask_scm_branch_on_launch`: (boolean, default=`False`) * `ask_limit_on_launch`: (boolean, default=`False`) * `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, default=“)

func (*Client) OrganizationsOrganizationsWorkflowJobTemplatesList

OrganizationsOrganizationsWorkflowJobTemplatesList lists workflow job templates for an organization

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

The resulting data structure contains:

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

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

## Results

Each workflow job template data structure includes the following fields:

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

  • `new`: New
  • `pending`: Pending
  • `waiting`: Waiting
  • `running`: Running
  • `successful`: Successful
  • `failed`: Failed
  • `error`: Error
  • `canceled`: Canceled
  • `never updated`: Never Updated
  • `ok`: OK
  • `missing`: Missing
  • `none`: No External Source
  • `updating`: Updating

* `extra_vars`: (json) * `organization`: The organization used to determine access to this template. (id) * `survey_enabled`: (boolean) * `allow_simultaneous`: (boolean) * `ask_variables_on_launch`: (boolean) * `inventory`: Inventory applied as a prompt, assuming job template prompts for inventory (id) * `limit`: (string) * `scm_branch`: (string) * `ask_inventory_on_launch`: (boolean) * `ask_scm_branch_on_launch`: (boolean) * `ask_limit_on_launch`: (boolean) * `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)

## Sorting

To specify that workflow job templates 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) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	OrganizationsOrganizationsAccessListList(params *OrganizationsOrganizationsAccessListListParams) (*OrganizationsOrganizationsAccessListListOK, error)

	OrganizationsOrganizationsActivityStreamList(params *OrganizationsOrganizationsActivityStreamListParams) (*OrganizationsOrganizationsActivityStreamListOK, error)

	OrganizationsOrganizationsAdminsCreate(params *OrganizationsOrganizationsAdminsCreateParams) (*OrganizationsOrganizationsAdminsCreateCreated, error)

	OrganizationsOrganizationsAdminsList(params *OrganizationsOrganizationsAdminsListParams) (*OrganizationsOrganizationsAdminsListOK, error)

	OrganizationsOrganizationsApplicationsCreate(params *OrganizationsOrganizationsApplicationsCreateParams) (*OrganizationsOrganizationsApplicationsCreateCreated, error)

	OrganizationsOrganizationsApplicationsList(params *OrganizationsOrganizationsApplicationsListParams) (*OrganizationsOrganizationsApplicationsListOK, error)

	OrganizationsOrganizationsCreate(params *OrganizationsOrganizationsCreateParams) (*OrganizationsOrganizationsCreateCreated, error)

	OrganizationsOrganizationsCredentialsCreate(params *OrganizationsOrganizationsCredentialsCreateParams) (*OrganizationsOrganizationsCredentialsCreateCreated, error)

	OrganizationsOrganizationsCredentialsList(params *OrganizationsOrganizationsCredentialsListParams) (*OrganizationsOrganizationsCredentialsListOK, error)

	OrganizationsOrganizationsDelete(params *OrganizationsOrganizationsDeleteParams) (*OrganizationsOrganizationsDeleteNoContent, error)

	OrganizationsOrganizationsInstanceGroupsCreate(params *OrganizationsOrganizationsInstanceGroupsCreateParams) (*OrganizationsOrganizationsInstanceGroupsCreateCreated, error)

	OrganizationsOrganizationsInstanceGroupsList(params *OrganizationsOrganizationsInstanceGroupsListParams) (*OrganizationsOrganizationsInstanceGroupsListOK, error)

	OrganizationsOrganizationsInventoriesList(params *OrganizationsOrganizationsInventoriesListParams) (*OrganizationsOrganizationsInventoriesListOK, error)

	OrganizationsOrganizationsJobTemplatesCreate(params *OrganizationsOrganizationsJobTemplatesCreateParams) (*OrganizationsOrganizationsJobTemplatesCreateCreated, error)

	OrganizationsOrganizationsJobTemplatesList(params *OrganizationsOrganizationsJobTemplatesListParams) (*OrganizationsOrganizationsJobTemplatesListOK, error)

	OrganizationsOrganizationsList(params *OrganizationsOrganizationsListParams) (*OrganizationsOrganizationsListOK, error)

	OrganizationsOrganizationsNotificationTemplatesApprovalsCreate(params *OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated, error)

	OrganizationsOrganizationsNotificationTemplatesApprovalsList(params *OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) (*OrganizationsOrganizationsNotificationTemplatesApprovalsListOK, error)

	OrganizationsOrganizationsNotificationTemplatesCreate(params *OrganizationsOrganizationsNotificationTemplatesCreateParams) (*OrganizationsOrganizationsNotificationTemplatesCreateCreated, error)

	OrganizationsOrganizationsNotificationTemplatesErrorCreate(params *OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) (*OrganizationsOrganizationsNotificationTemplatesErrorCreateCreated, error)

	OrganizationsOrganizationsNotificationTemplatesErrorList(params *OrganizationsOrganizationsNotificationTemplatesErrorListParams) (*OrganizationsOrganizationsNotificationTemplatesErrorListOK, error)

	OrganizationsOrganizationsNotificationTemplatesList(params *OrganizationsOrganizationsNotificationTemplatesListParams) (*OrganizationsOrganizationsNotificationTemplatesListOK, error)

	OrganizationsOrganizationsNotificationTemplatesStartedCreate(params *OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) (*OrganizationsOrganizationsNotificationTemplatesStartedCreateCreated, error)

	OrganizationsOrganizationsNotificationTemplatesStartedList(params *OrganizationsOrganizationsNotificationTemplatesStartedListParams) (*OrganizationsOrganizationsNotificationTemplatesStartedListOK, error)

	OrganizationsOrganizationsNotificationTemplatesSuccessCreate(params *OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated, error)

	OrganizationsOrganizationsNotificationTemplatesSuccessList(params *OrganizationsOrganizationsNotificationTemplatesSuccessListParams) (*OrganizationsOrganizationsNotificationTemplatesSuccessListOK, error)

	OrganizationsOrganizationsObjectRolesList(params *OrganizationsOrganizationsObjectRolesListParams) (*OrganizationsOrganizationsObjectRolesListOK, error)

	OrganizationsOrganizationsPartialUpdate(params *OrganizationsOrganizationsPartialUpdateParams) (*OrganizationsOrganizationsPartialUpdateOK, error)

	OrganizationsOrganizationsProjectsCreate(params *OrganizationsOrganizationsProjectsCreateParams) (*OrganizationsOrganizationsProjectsCreateCreated, error)

	OrganizationsOrganizationsProjectsList(params *OrganizationsOrganizationsProjectsListParams) (*OrganizationsOrganizationsProjectsListOK, error)

	OrganizationsOrganizationsRead(params *OrganizationsOrganizationsReadParams) (*OrganizationsOrganizationsReadOK, error)

	OrganizationsOrganizationsTeamsCreate(params *OrganizationsOrganizationsTeamsCreateParams) (*OrganizationsOrganizationsTeamsCreateCreated, error)

	OrganizationsOrganizationsTeamsList(params *OrganizationsOrganizationsTeamsListParams) (*OrganizationsOrganizationsTeamsListOK, error)

	OrganizationsOrganizationsUpdate(params *OrganizationsOrganizationsUpdateParams) (*OrganizationsOrganizationsUpdateOK, error)

	OrganizationsOrganizationsUsersCreate(params *OrganizationsOrganizationsUsersCreateParams) (*OrganizationsOrganizationsUsersCreateCreated, error)

	OrganizationsOrganizationsUsersList(params *OrganizationsOrganizationsUsersListParams) (*OrganizationsOrganizationsUsersListOK, error)

	OrganizationsOrganizationsWorkflowJobTemplatesCreate(params *OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) (*OrganizationsOrganizationsWorkflowJobTemplatesCreateCreated, error)

	OrganizationsOrganizationsWorkflowJobTemplatesList(params *OrganizationsOrganizationsWorkflowJobTemplatesListParams) (*OrganizationsOrganizationsWorkflowJobTemplatesListOK, 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 organizations API client.

type OrganizationsOrganizationsAccessListListOK

type OrganizationsOrganizationsAccessListListOK struct {
}

OrganizationsOrganizationsAccessListListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsAccessListListOK

func NewOrganizationsOrganizationsAccessListListOK() *OrganizationsOrganizationsAccessListListOK

NewOrganizationsOrganizationsAccessListListOK creates a OrganizationsOrganizationsAccessListListOK with default headers values

func (*OrganizationsOrganizationsAccessListListOK) Error

type OrganizationsOrganizationsAccessListListParams

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

OrganizationsOrganizationsAccessListListParams contains all the parameters to send to the API endpoint for the organizations organizations access list list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsAccessListListParams

func NewOrganizationsOrganizationsAccessListListParams() *OrganizationsOrganizationsAccessListListParams

NewOrganizationsOrganizationsAccessListListParams creates a new OrganizationsOrganizationsAccessListListParams object with the default values initialized.

func NewOrganizationsOrganizationsAccessListListParamsWithContext

func NewOrganizationsOrganizationsAccessListListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsAccessListListParams

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

func NewOrganizationsOrganizationsAccessListListParamsWithHTTPClient

func NewOrganizationsOrganizationsAccessListListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsAccessListListParams

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

func NewOrganizationsOrganizationsAccessListListParamsWithTimeout

func NewOrganizationsOrganizationsAccessListListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsAccessListListParams

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

func (*OrganizationsOrganizationsAccessListListParams) SetContext

SetContext adds the context to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) SetID

SetID adds the id to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) SetPage

SetPage adds the page to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) SetSearch

SetSearch adds the search to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) WithContext

WithContext adds the context to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) WithID

WithID adds the id to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) WithPage

WithPage adds the page to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) WithSearch

WithSearch adds the search to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations access list list params

func (*OrganizationsOrganizationsAccessListListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsAccessListListReader

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

OrganizationsOrganizationsAccessListListReader is a Reader for the OrganizationsOrganizationsAccessListList structure.

func (*OrganizationsOrganizationsAccessListListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsActivityStreamListOK

type OrganizationsOrganizationsActivityStreamListOK struct {
}

OrganizationsOrganizationsActivityStreamListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsActivityStreamListOK

func NewOrganizationsOrganizationsActivityStreamListOK() *OrganizationsOrganizationsActivityStreamListOK

NewOrganizationsOrganizationsActivityStreamListOK creates a OrganizationsOrganizationsActivityStreamListOK with default headers values

func (*OrganizationsOrganizationsActivityStreamListOK) Error

type OrganizationsOrganizationsActivityStreamListParams

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

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

func NewOrganizationsOrganizationsActivityStreamListParams

func NewOrganizationsOrganizationsActivityStreamListParams() *OrganizationsOrganizationsActivityStreamListParams

NewOrganizationsOrganizationsActivityStreamListParams creates a new OrganizationsOrganizationsActivityStreamListParams object with the default values initialized.

func NewOrganizationsOrganizationsActivityStreamListParamsWithContext

func NewOrganizationsOrganizationsActivityStreamListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsActivityStreamListParams

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

func NewOrganizationsOrganizationsActivityStreamListParamsWithHTTPClient

func NewOrganizationsOrganizationsActivityStreamListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsActivityStreamListParams

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

func NewOrganizationsOrganizationsActivityStreamListParamsWithTimeout

func NewOrganizationsOrganizationsActivityStreamListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsActivityStreamListParams

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

func (*OrganizationsOrganizationsActivityStreamListParams) SetContext

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

func (*OrganizationsOrganizationsActivityStreamListParams) SetHTTPClient

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

func (*OrganizationsOrganizationsActivityStreamListParams) SetID

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

func (*OrganizationsOrganizationsActivityStreamListParams) SetPage

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

func (*OrganizationsOrganizationsActivityStreamListParams) SetPageSize

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

func (*OrganizationsOrganizationsActivityStreamListParams) SetSearch

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

func (*OrganizationsOrganizationsActivityStreamListParams) SetTimeout

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

func (*OrganizationsOrganizationsActivityStreamListParams) WithContext

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

func (*OrganizationsOrganizationsActivityStreamListParams) WithHTTPClient

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

func (*OrganizationsOrganizationsActivityStreamListParams) WithID

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

func (*OrganizationsOrganizationsActivityStreamListParams) WithPage

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

func (*OrganizationsOrganizationsActivityStreamListParams) WithPageSize

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

func (*OrganizationsOrganizationsActivityStreamListParams) WithSearch

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

func (*OrganizationsOrganizationsActivityStreamListParams) WithTimeout

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

func (*OrganizationsOrganizationsActivityStreamListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsActivityStreamListReader

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

OrganizationsOrganizationsActivityStreamListReader is a Reader for the OrganizationsOrganizationsActivityStreamList structure.

func (*OrganizationsOrganizationsActivityStreamListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsAdminsCreateCreated

type OrganizationsOrganizationsAdminsCreateCreated struct {
}

OrganizationsOrganizationsAdminsCreateCreated handles this case with default header values.

OrganizationsOrganizationsAdminsCreateCreated organizations organizations admins create created

func NewOrganizationsOrganizationsAdminsCreateCreated

func NewOrganizationsOrganizationsAdminsCreateCreated() *OrganizationsOrganizationsAdminsCreateCreated

NewOrganizationsOrganizationsAdminsCreateCreated creates a OrganizationsOrganizationsAdminsCreateCreated with default headers values

func (*OrganizationsOrganizationsAdminsCreateCreated) Error

type OrganizationsOrganizationsAdminsCreateForbidden

type OrganizationsOrganizationsAdminsCreateForbidden struct {
}

OrganizationsOrganizationsAdminsCreateForbidden handles this case with default header values.

No Permission Response

func NewOrganizationsOrganizationsAdminsCreateForbidden

func NewOrganizationsOrganizationsAdminsCreateForbidden() *OrganizationsOrganizationsAdminsCreateForbidden

NewOrganizationsOrganizationsAdminsCreateForbidden creates a OrganizationsOrganizationsAdminsCreateForbidden with default headers values

func (*OrganizationsOrganizationsAdminsCreateForbidden) Error

type OrganizationsOrganizationsAdminsCreateParams

type OrganizationsOrganizationsAdminsCreateParams struct {

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

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

OrganizationsOrganizationsAdminsCreateParams contains all the parameters to send to the API endpoint for the organizations organizations admins create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsAdminsCreateParams

func NewOrganizationsOrganizationsAdminsCreateParams() *OrganizationsOrganizationsAdminsCreateParams

NewOrganizationsOrganizationsAdminsCreateParams creates a new OrganizationsOrganizationsAdminsCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsAdminsCreateParamsWithContext

func NewOrganizationsOrganizationsAdminsCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsAdminsCreateParams

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

func NewOrganizationsOrganizationsAdminsCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsAdminsCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsAdminsCreateParams

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

func NewOrganizationsOrganizationsAdminsCreateParamsWithTimeout

func NewOrganizationsOrganizationsAdminsCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsAdminsCreateParams

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

func (*OrganizationsOrganizationsAdminsCreateParams) SetContext

SetContext adds the context to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) SetData

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

SetData adds the data to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) SetID

SetID adds the id to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) WithContext

WithContext adds the context to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) WithData

WithData adds the data to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) WithID

WithID adds the id to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations admins create params

func (*OrganizationsOrganizationsAdminsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsAdminsCreateReader

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

OrganizationsOrganizationsAdminsCreateReader is a Reader for the OrganizationsOrganizationsAdminsCreate structure.

func (*OrganizationsOrganizationsAdminsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsAdminsListOK

type OrganizationsOrganizationsAdminsListOK struct {
}

OrganizationsOrganizationsAdminsListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsAdminsListOK

func NewOrganizationsOrganizationsAdminsListOK() *OrganizationsOrganizationsAdminsListOK

NewOrganizationsOrganizationsAdminsListOK creates a OrganizationsOrganizationsAdminsListOK with default headers values

func (*OrganizationsOrganizationsAdminsListOK) Error

type OrganizationsOrganizationsAdminsListParams

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

OrganizationsOrganizationsAdminsListParams contains all the parameters to send to the API endpoint for the organizations organizations admins list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsAdminsListParams

func NewOrganizationsOrganizationsAdminsListParams() *OrganizationsOrganizationsAdminsListParams

NewOrganizationsOrganizationsAdminsListParams creates a new OrganizationsOrganizationsAdminsListParams object with the default values initialized.

func NewOrganizationsOrganizationsAdminsListParamsWithContext

func NewOrganizationsOrganizationsAdminsListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsAdminsListParams

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

func NewOrganizationsOrganizationsAdminsListParamsWithHTTPClient

func NewOrganizationsOrganizationsAdminsListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsAdminsListParams

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

func NewOrganizationsOrganizationsAdminsListParamsWithTimeout

func NewOrganizationsOrganizationsAdminsListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsAdminsListParams

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

func (*OrganizationsOrganizationsAdminsListParams) SetContext

SetContext adds the context to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) SetID

SetID adds the id to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) SetPage

SetPage adds the page to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) SetSearch

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

SetSearch adds the search to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) WithContext

WithContext adds the context to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) WithID

WithID adds the id to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) WithPage

WithPage adds the page to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) WithSearch

WithSearch adds the search to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations admins list params

func (*OrganizationsOrganizationsAdminsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsAdminsListReader

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

OrganizationsOrganizationsAdminsListReader is a Reader for the OrganizationsOrganizationsAdminsList structure.

func (*OrganizationsOrganizationsAdminsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsApplicationsCreateBody

type OrganizationsOrganizationsApplicationsCreateBody struct {

	// The Grant type the user must use for acquire tokens for this application.
	// Required: true
	AuthorizationGrantType *string `json:"authorization_grant_type"`

	// Set to Public or Confidential depending on how secure the client device is.
	// Required: true
	ClientType *string `json:"client_type"`

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

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

	// Organization containing this application.
	// Required: true
	Organization *int64 `json:"organization"`

	// Allowed URIs list, space separated
	RedirectUris string `json:"redirect_uris,omitempty"`

	// Set True to skip authorization step for completely trusted applications.
	SkipAuthorization string `json:"skip_authorization,omitempty"`
}

OrganizationsOrganizationsApplicationsCreateBody organizations organizations applications create body swagger:model OrganizationsOrganizationsApplicationsCreateBody

func (*OrganizationsOrganizationsApplicationsCreateBody) MarshalBinary

MarshalBinary interface implementation

func (*OrganizationsOrganizationsApplicationsCreateBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsApplicationsCreateBody) Validate

Validate validates this organizations organizations applications create body

type OrganizationsOrganizationsApplicationsCreateCreated

type OrganizationsOrganizationsApplicationsCreateCreated struct {
}

OrganizationsOrganizationsApplicationsCreateCreated handles this case with default header values.

OrganizationsOrganizationsApplicationsCreateCreated organizations organizations applications create created

func NewOrganizationsOrganizationsApplicationsCreateCreated

func NewOrganizationsOrganizationsApplicationsCreateCreated() *OrganizationsOrganizationsApplicationsCreateCreated

NewOrganizationsOrganizationsApplicationsCreateCreated creates a OrganizationsOrganizationsApplicationsCreateCreated with default headers values

func (*OrganizationsOrganizationsApplicationsCreateCreated) Error

type OrganizationsOrganizationsApplicationsCreateParams

type OrganizationsOrganizationsApplicationsCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsApplicationsCreateBody
	/*ID*/
	ID string

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

OrganizationsOrganizationsApplicationsCreateParams contains all the parameters to send to the API endpoint for the organizations organizations applications create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsApplicationsCreateParams

func NewOrganizationsOrganizationsApplicationsCreateParams() *OrganizationsOrganizationsApplicationsCreateParams

NewOrganizationsOrganizationsApplicationsCreateParams creates a new OrganizationsOrganizationsApplicationsCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsApplicationsCreateParamsWithContext

func NewOrganizationsOrganizationsApplicationsCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsApplicationsCreateParams

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

func NewOrganizationsOrganizationsApplicationsCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsApplicationsCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsApplicationsCreateParams

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

func NewOrganizationsOrganizationsApplicationsCreateParamsWithTimeout

func NewOrganizationsOrganizationsApplicationsCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsApplicationsCreateParams

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

func (*OrganizationsOrganizationsApplicationsCreateParams) SetContext

SetContext adds the context to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) SetData

SetData adds the data to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) SetID

SetID adds the id to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) WithContext

WithContext adds the context to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) WithData

WithData adds the data to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) WithID

WithID adds the id to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations applications create params

func (*OrganizationsOrganizationsApplicationsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsApplicationsCreateReader

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

OrganizationsOrganizationsApplicationsCreateReader is a Reader for the OrganizationsOrganizationsApplicationsCreate structure.

func (*OrganizationsOrganizationsApplicationsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsApplicationsListOK

type OrganizationsOrganizationsApplicationsListOK struct {
}

OrganizationsOrganizationsApplicationsListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsApplicationsListOK

func NewOrganizationsOrganizationsApplicationsListOK() *OrganizationsOrganizationsApplicationsListOK

NewOrganizationsOrganizationsApplicationsListOK creates a OrganizationsOrganizationsApplicationsListOK with default headers values

func (*OrganizationsOrganizationsApplicationsListOK) Error

type OrganizationsOrganizationsApplicationsListParams

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

OrganizationsOrganizationsApplicationsListParams contains all the parameters to send to the API endpoint for the organizations organizations applications list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsApplicationsListParams

func NewOrganizationsOrganizationsApplicationsListParams() *OrganizationsOrganizationsApplicationsListParams

NewOrganizationsOrganizationsApplicationsListParams creates a new OrganizationsOrganizationsApplicationsListParams object with the default values initialized.

func NewOrganizationsOrganizationsApplicationsListParamsWithContext

func NewOrganizationsOrganizationsApplicationsListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsApplicationsListParams

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

func NewOrganizationsOrganizationsApplicationsListParamsWithHTTPClient

func NewOrganizationsOrganizationsApplicationsListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsApplicationsListParams

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

func NewOrganizationsOrganizationsApplicationsListParamsWithTimeout

func NewOrganizationsOrganizationsApplicationsListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsApplicationsListParams

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

func (*OrganizationsOrganizationsApplicationsListParams) SetContext

SetContext adds the context to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) SetID

SetID adds the id to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) SetPage

SetPage adds the page to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) SetSearch

SetSearch adds the search to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) WithContext

WithContext adds the context to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) WithID

WithID adds the id to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) WithPage

WithPage adds the page to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) WithSearch

WithSearch adds the search to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations applications list params

func (*OrganizationsOrganizationsApplicationsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsApplicationsListReader

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

OrganizationsOrganizationsApplicationsListReader is a Reader for the OrganizationsOrganizationsApplicationsList structure.

func (*OrganizationsOrganizationsApplicationsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsCreateBadRequest

type OrganizationsOrganizationsCreateBadRequest struct {
}

OrganizationsOrganizationsCreateBadRequest handles this case with default header values.

Bad Request

func NewOrganizationsOrganizationsCreateBadRequest

func NewOrganizationsOrganizationsCreateBadRequest() *OrganizationsOrganizationsCreateBadRequest

NewOrganizationsOrganizationsCreateBadRequest creates a OrganizationsOrganizationsCreateBadRequest with default headers values

func (*OrganizationsOrganizationsCreateBadRequest) Error

type OrganizationsOrganizationsCreateCreated

type OrganizationsOrganizationsCreateCreated struct {
}

OrganizationsOrganizationsCreateCreated handles this case with default header values.

OrganizationsOrganizationsCreateCreated organizations organizations create created

func NewOrganizationsOrganizationsCreateCreated

func NewOrganizationsOrganizationsCreateCreated() *OrganizationsOrganizationsCreateCreated

NewOrganizationsOrganizationsCreateCreated creates a OrganizationsOrganizationsCreateCreated with default headers values

func (*OrganizationsOrganizationsCreateCreated) Error

type OrganizationsOrganizationsCreateForbidden

type OrganizationsOrganizationsCreateForbidden struct {
}

OrganizationsOrganizationsCreateForbidden handles this case with default header values.

No Permission Response

func NewOrganizationsOrganizationsCreateForbidden

func NewOrganizationsOrganizationsCreateForbidden() *OrganizationsOrganizationsCreateForbidden

NewOrganizationsOrganizationsCreateForbidden creates a OrganizationsOrganizationsCreateForbidden with default headers values

func (*OrganizationsOrganizationsCreateForbidden) Error

type OrganizationsOrganizationsCreateParams

type OrganizationsOrganizationsCreateParams struct {

	/*Data*/
	Data interface{}

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

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

func NewOrganizationsOrganizationsCreateParams

func NewOrganizationsOrganizationsCreateParams() *OrganizationsOrganizationsCreateParams

NewOrganizationsOrganizationsCreateParams creates a new OrganizationsOrganizationsCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsCreateParamsWithContext

func NewOrganizationsOrganizationsCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsCreateParams

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

func NewOrganizationsOrganizationsCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsCreateParams

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

func NewOrganizationsOrganizationsCreateParamsWithTimeout

func NewOrganizationsOrganizationsCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsCreateParams

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

func (*OrganizationsOrganizationsCreateParams) SetContext

SetContext adds the context to the organizations organizations create params

func (*OrganizationsOrganizationsCreateParams) SetData

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

SetData adds the data to the organizations organizations create params

func (*OrganizationsOrganizationsCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations create params

func (*OrganizationsOrganizationsCreateParams) SetTimeout

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

SetTimeout adds the timeout to the organizations organizations create params

func (*OrganizationsOrganizationsCreateParams) WithContext

WithContext adds the context to the organizations organizations create params

func (*OrganizationsOrganizationsCreateParams) WithData

WithData adds the data to the organizations organizations create params

func (*OrganizationsOrganizationsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations create params

func (*OrganizationsOrganizationsCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations create params

func (*OrganizationsOrganizationsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsCreateReader

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

OrganizationsOrganizationsCreateReader is a Reader for the OrganizationsOrganizationsCreate structure.

func (*OrganizationsOrganizationsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsCredentialsCreateBody

type OrganizationsOrganizationsCredentialsCreateBody struct {

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

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

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

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

	// Inherit permissions from organization roles. If provided on creation, do not give either user or team.
	Organization int64 `json:"organization,omitempty"`
}

OrganizationsOrganizationsCredentialsCreateBody organizations organizations credentials create body swagger:model OrganizationsOrganizationsCredentialsCreateBody

func (*OrganizationsOrganizationsCredentialsCreateBody) MarshalBinary

MarshalBinary interface implementation

func (*OrganizationsOrganizationsCredentialsCreateBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsCredentialsCreateBody) Validate

Validate validates this organizations organizations credentials create body

type OrganizationsOrganizationsCredentialsCreateCreated

type OrganizationsOrganizationsCredentialsCreateCreated struct {
}

OrganizationsOrganizationsCredentialsCreateCreated handles this case with default header values.

OrganizationsOrganizationsCredentialsCreateCreated organizations organizations credentials create created

func NewOrganizationsOrganizationsCredentialsCreateCreated

func NewOrganizationsOrganizationsCredentialsCreateCreated() *OrganizationsOrganizationsCredentialsCreateCreated

NewOrganizationsOrganizationsCredentialsCreateCreated creates a OrganizationsOrganizationsCredentialsCreateCreated with default headers values

func (*OrganizationsOrganizationsCredentialsCreateCreated) Error

type OrganizationsOrganizationsCredentialsCreateParams

type OrganizationsOrganizationsCredentialsCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsCredentialsCreateBody
	/*ID*/
	ID string

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

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

func NewOrganizationsOrganizationsCredentialsCreateParams

func NewOrganizationsOrganizationsCredentialsCreateParams() *OrganizationsOrganizationsCredentialsCreateParams

NewOrganizationsOrganizationsCredentialsCreateParams creates a new OrganizationsOrganizationsCredentialsCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsCredentialsCreateParamsWithContext

func NewOrganizationsOrganizationsCredentialsCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsCredentialsCreateParams

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

func NewOrganizationsOrganizationsCredentialsCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsCredentialsCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsCredentialsCreateParams

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

func NewOrganizationsOrganizationsCredentialsCreateParamsWithTimeout

func NewOrganizationsOrganizationsCredentialsCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsCredentialsCreateParams

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

func (*OrganizationsOrganizationsCredentialsCreateParams) SetContext

SetContext adds the context to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) SetData

SetData adds the data to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) SetID

SetID adds the id to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) WithContext

WithContext adds the context to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) WithData

WithData adds the data to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) WithID

WithID adds the id to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations credentials create params

func (*OrganizationsOrganizationsCredentialsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsCredentialsCreateReader

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

OrganizationsOrganizationsCredentialsCreateReader is a Reader for the OrganizationsOrganizationsCredentialsCreate structure.

func (*OrganizationsOrganizationsCredentialsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsCredentialsListOK

type OrganizationsOrganizationsCredentialsListOK struct {
}

OrganizationsOrganizationsCredentialsListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsCredentialsListOK

func NewOrganizationsOrganizationsCredentialsListOK() *OrganizationsOrganizationsCredentialsListOK

NewOrganizationsOrganizationsCredentialsListOK creates a OrganizationsOrganizationsCredentialsListOK with default headers values

func (*OrganizationsOrganizationsCredentialsListOK) Error

type OrganizationsOrganizationsCredentialsListParams

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

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

func NewOrganizationsOrganizationsCredentialsListParams

func NewOrganizationsOrganizationsCredentialsListParams() *OrganizationsOrganizationsCredentialsListParams

NewOrganizationsOrganizationsCredentialsListParams creates a new OrganizationsOrganizationsCredentialsListParams object with the default values initialized.

func NewOrganizationsOrganizationsCredentialsListParamsWithContext

func NewOrganizationsOrganizationsCredentialsListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsCredentialsListParams

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

func NewOrganizationsOrganizationsCredentialsListParamsWithHTTPClient

func NewOrganizationsOrganizationsCredentialsListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsCredentialsListParams

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

func NewOrganizationsOrganizationsCredentialsListParamsWithTimeout

func NewOrganizationsOrganizationsCredentialsListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsCredentialsListParams

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

func (*OrganizationsOrganizationsCredentialsListParams) SetContext

SetContext adds the context to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) SetID

SetID adds the id to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) SetPage

SetPage adds the page to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) SetSearch

SetSearch adds the search to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) WithContext

WithContext adds the context to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) WithID

WithID adds the id to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) WithPage

WithPage adds the page to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) WithSearch

WithSearch adds the search to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations credentials list params

func (*OrganizationsOrganizationsCredentialsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsCredentialsListReader

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

OrganizationsOrganizationsCredentialsListReader is a Reader for the OrganizationsOrganizationsCredentialsList structure.

func (*OrganizationsOrganizationsCredentialsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsDeleteConflict

type OrganizationsOrganizationsDeleteConflict struct {
}

OrganizationsOrganizationsDeleteConflict handles this case with default header values.

Request Conflict

func NewOrganizationsOrganizationsDeleteConflict

func NewOrganizationsOrganizationsDeleteConflict() *OrganizationsOrganizationsDeleteConflict

NewOrganizationsOrganizationsDeleteConflict creates a OrganizationsOrganizationsDeleteConflict with default headers values

func (*OrganizationsOrganizationsDeleteConflict) Error

type OrganizationsOrganizationsDeleteForbidden

type OrganizationsOrganizationsDeleteForbidden struct {
}

OrganizationsOrganizationsDeleteForbidden handles this case with default header values.

No Permission Response

func NewOrganizationsOrganizationsDeleteForbidden

func NewOrganizationsOrganizationsDeleteForbidden() *OrganizationsOrganizationsDeleteForbidden

NewOrganizationsOrganizationsDeleteForbidden creates a OrganizationsOrganizationsDeleteForbidden with default headers values

func (*OrganizationsOrganizationsDeleteForbidden) Error

type OrganizationsOrganizationsDeleteNoContent

type OrganizationsOrganizationsDeleteNoContent struct {
}

OrganizationsOrganizationsDeleteNoContent handles this case with default header values.

OrganizationsOrganizationsDeleteNoContent organizations organizations delete no content

func NewOrganizationsOrganizationsDeleteNoContent

func NewOrganizationsOrganizationsDeleteNoContent() *OrganizationsOrganizationsDeleteNoContent

NewOrganizationsOrganizationsDeleteNoContent creates a OrganizationsOrganizationsDeleteNoContent with default headers values

func (*OrganizationsOrganizationsDeleteNoContent) Error

type OrganizationsOrganizationsDeleteParams

type OrganizationsOrganizationsDeleteParams struct {

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

	*/
	Search *string

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

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

func NewOrganizationsOrganizationsDeleteParams

func NewOrganizationsOrganizationsDeleteParams() *OrganizationsOrganizationsDeleteParams

NewOrganizationsOrganizationsDeleteParams creates a new OrganizationsOrganizationsDeleteParams object with the default values initialized.

func NewOrganizationsOrganizationsDeleteParamsWithContext

func NewOrganizationsOrganizationsDeleteParamsWithContext(ctx context.Context) *OrganizationsOrganizationsDeleteParams

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

func NewOrganizationsOrganizationsDeleteParamsWithHTTPClient

func NewOrganizationsOrganizationsDeleteParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsDeleteParams

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

func NewOrganizationsOrganizationsDeleteParamsWithTimeout

func NewOrganizationsOrganizationsDeleteParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsDeleteParams

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

func (*OrganizationsOrganizationsDeleteParams) SetContext

SetContext adds the context to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) SetID

SetID adds the id to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) SetSearch

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

SetSearch adds the search to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) WithContext

WithContext adds the context to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) WithID

WithID adds the id to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) WithSearch

WithSearch adds the search to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations delete params

func (*OrganizationsOrganizationsDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsDeleteReader

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

OrganizationsOrganizationsDeleteReader is a Reader for the OrganizationsOrganizationsDelete structure.

func (*OrganizationsOrganizationsDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsDeleteUnauthorized

type OrganizationsOrganizationsDeleteUnauthorized struct {
}

OrganizationsOrganizationsDeleteUnauthorized handles this case with default header values.

Unauthorised

func NewOrganizationsOrganizationsDeleteUnauthorized

func NewOrganizationsOrganizationsDeleteUnauthorized() *OrganizationsOrganizationsDeleteUnauthorized

NewOrganizationsOrganizationsDeleteUnauthorized creates a OrganizationsOrganizationsDeleteUnauthorized with default headers values

func (*OrganizationsOrganizationsDeleteUnauthorized) Error

type OrganizationsOrganizationsInstanceGroupsCreateCreated

type OrganizationsOrganizationsInstanceGroupsCreateCreated struct {
}

OrganizationsOrganizationsInstanceGroupsCreateCreated handles this case with default header values.

OrganizationsOrganizationsInstanceGroupsCreateCreated organizations organizations instance groups create created

func NewOrganizationsOrganizationsInstanceGroupsCreateCreated

func NewOrganizationsOrganizationsInstanceGroupsCreateCreated() *OrganizationsOrganizationsInstanceGroupsCreateCreated

NewOrganizationsOrganizationsInstanceGroupsCreateCreated creates a OrganizationsOrganizationsInstanceGroupsCreateCreated with default headers values

func (*OrganizationsOrganizationsInstanceGroupsCreateCreated) Error

type OrganizationsOrganizationsInstanceGroupsCreateParams

type OrganizationsOrganizationsInstanceGroupsCreateParams struct {

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

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

OrganizationsOrganizationsInstanceGroupsCreateParams contains all the parameters to send to the API endpoint for the organizations organizations instance groups create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsInstanceGroupsCreateParams

func NewOrganizationsOrganizationsInstanceGroupsCreateParams() *OrganizationsOrganizationsInstanceGroupsCreateParams

NewOrganizationsOrganizationsInstanceGroupsCreateParams creates a new OrganizationsOrganizationsInstanceGroupsCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsInstanceGroupsCreateParamsWithContext

func NewOrganizationsOrganizationsInstanceGroupsCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsInstanceGroupsCreateParams

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

func NewOrganizationsOrganizationsInstanceGroupsCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsInstanceGroupsCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsInstanceGroupsCreateParams

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

func NewOrganizationsOrganizationsInstanceGroupsCreateParamsWithTimeout

func NewOrganizationsOrganizationsInstanceGroupsCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsInstanceGroupsCreateParams

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

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) SetContext

SetContext adds the context to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) SetData

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

SetData adds the data to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) SetID

SetID adds the id to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) WithContext

WithContext adds the context to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) WithData

WithData adds the data to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) WithID

WithID adds the id to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations instance groups create params

func (*OrganizationsOrganizationsInstanceGroupsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsInstanceGroupsCreateReader

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

OrganizationsOrganizationsInstanceGroupsCreateReader is a Reader for the OrganizationsOrganizationsInstanceGroupsCreate structure.

func (*OrganizationsOrganizationsInstanceGroupsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsInstanceGroupsListOK

type OrganizationsOrganizationsInstanceGroupsListOK struct {
}

OrganizationsOrganizationsInstanceGroupsListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsInstanceGroupsListOK

func NewOrganizationsOrganizationsInstanceGroupsListOK() *OrganizationsOrganizationsInstanceGroupsListOK

NewOrganizationsOrganizationsInstanceGroupsListOK creates a OrganizationsOrganizationsInstanceGroupsListOK with default headers values

func (*OrganizationsOrganizationsInstanceGroupsListOK) Error

type OrganizationsOrganizationsInstanceGroupsListParams

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

OrganizationsOrganizationsInstanceGroupsListParams contains all the parameters to send to the API endpoint for the organizations organizations instance groups list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsInstanceGroupsListParams

func NewOrganizationsOrganizationsInstanceGroupsListParams() *OrganizationsOrganizationsInstanceGroupsListParams

NewOrganizationsOrganizationsInstanceGroupsListParams creates a new OrganizationsOrganizationsInstanceGroupsListParams object with the default values initialized.

func NewOrganizationsOrganizationsInstanceGroupsListParamsWithContext

func NewOrganizationsOrganizationsInstanceGroupsListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsInstanceGroupsListParams

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

func NewOrganizationsOrganizationsInstanceGroupsListParamsWithHTTPClient

func NewOrganizationsOrganizationsInstanceGroupsListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsInstanceGroupsListParams

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

func NewOrganizationsOrganizationsInstanceGroupsListParamsWithTimeout

func NewOrganizationsOrganizationsInstanceGroupsListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsInstanceGroupsListParams

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

func (*OrganizationsOrganizationsInstanceGroupsListParams) SetContext

SetContext adds the context to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) SetID

SetID adds the id to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) SetPage

SetPage adds the page to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) SetPageSize

SetPageSize adds the pageSize to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) SetSearch

SetSearch adds the search to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) WithContext

WithContext adds the context to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) WithID

WithID adds the id to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) WithPage

WithPage adds the page to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) WithSearch

WithSearch adds the search to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations instance groups list params

func (*OrganizationsOrganizationsInstanceGroupsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsInstanceGroupsListReader

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

OrganizationsOrganizationsInstanceGroupsListReader is a Reader for the OrganizationsOrganizationsInstanceGroupsList structure.

func (*OrganizationsOrganizationsInstanceGroupsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsInventoriesListForbidden

type OrganizationsOrganizationsInventoriesListForbidden struct {
}

OrganizationsOrganizationsInventoriesListForbidden handles this case with default header values.

No Permission Response

func NewOrganizationsOrganizationsInventoriesListForbidden

func NewOrganizationsOrganizationsInventoriesListForbidden() *OrganizationsOrganizationsInventoriesListForbidden

NewOrganizationsOrganizationsInventoriesListForbidden creates a OrganizationsOrganizationsInventoriesListForbidden with default headers values

func (*OrganizationsOrganizationsInventoriesListForbidden) Error

type OrganizationsOrganizationsInventoriesListOK

type OrganizationsOrganizationsInventoriesListOK struct {
}

OrganizationsOrganizationsInventoriesListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsInventoriesListOK

func NewOrganizationsOrganizationsInventoriesListOK() *OrganizationsOrganizationsInventoriesListOK

NewOrganizationsOrganizationsInventoriesListOK creates a OrganizationsOrganizationsInventoriesListOK with default headers values

func (*OrganizationsOrganizationsInventoriesListOK) Error

type OrganizationsOrganizationsInventoriesListParams

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

OrganizationsOrganizationsInventoriesListParams contains all the parameters to send to the API endpoint for the organizations organizations inventories list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsInventoriesListParams

func NewOrganizationsOrganizationsInventoriesListParams() *OrganizationsOrganizationsInventoriesListParams

NewOrganizationsOrganizationsInventoriesListParams creates a new OrganizationsOrganizationsInventoriesListParams object with the default values initialized.

func NewOrganizationsOrganizationsInventoriesListParamsWithContext

func NewOrganizationsOrganizationsInventoriesListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsInventoriesListParams

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

func NewOrganizationsOrganizationsInventoriesListParamsWithHTTPClient

func NewOrganizationsOrganizationsInventoriesListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsInventoriesListParams

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

func NewOrganizationsOrganizationsInventoriesListParamsWithTimeout

func NewOrganizationsOrganizationsInventoriesListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsInventoriesListParams

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

func (*OrganizationsOrganizationsInventoriesListParams) SetContext

SetContext adds the context to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) SetID

SetID adds the id to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) SetPage

SetPage adds the page to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) SetSearch

SetSearch adds the search to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) WithContext

WithContext adds the context to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) WithID

WithID adds the id to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) WithPage

WithPage adds the page to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) WithSearch

WithSearch adds the search to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations inventories list params

func (*OrganizationsOrganizationsInventoriesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsInventoriesListReader

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

OrganizationsOrganizationsInventoriesListReader is a Reader for the OrganizationsOrganizationsInventoriesList structure.

func (*OrganizationsOrganizationsInventoriesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsJobTemplatesCreateBody

type OrganizationsOrganizationsJobTemplatesCreateBody struct {

	// allow simultaneous
	AllowSimultaneous string `json:"allow_simultaneous,omitempty"`

	// ask credential on launch
	AskCredentialOnLaunch string `json:"ask_credential_on_launch,omitempty"`

	// ask diff mode on launch
	AskDiffModeOnLaunch string `json:"ask_diff_mode_on_launch,omitempty"`

	// ask inventory on launch
	AskInventoryOnLaunch string `json:"ask_inventory_on_launch,omitempty"`

	// ask job type on launch
	AskJobTypeOnLaunch string `json:"ask_job_type_on_launch,omitempty"`

	// ask limit on launch
	AskLimitOnLaunch string `json:"ask_limit_on_launch,omitempty"`

	// ask scm branch on launch
	AskScmBranchOnLaunch string `json:"ask_scm_branch_on_launch,omitempty"`

	// ask skip tags on launch
	AskSkipTagsOnLaunch string `json:"ask_skip_tags_on_launch,omitempty"`

	// ask tags on launch
	AskTagsOnLaunch string `json:"ask_tags_on_launch,omitempty"`

	// ask variables on launch
	AskVariablesOnLaunch string `json:"ask_variables_on_launch,omitempty"`

	// ask verbosity on launch
	AskVerbosityOnLaunch string `json:"ask_verbosity_on_launch,omitempty"`

	// become enabled
	BecomeEnabled string `json:"become_enabled,omitempty"`

	// Local absolute file path containing a custom Python virtualenv to use
	CustomVirtualenv string `json:"custom_virtualenv,omitempty"`

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

	// If enabled, textual changes made to any templated files on the host are shown in the standard output
	DiffMode string `json:"diff_mode,omitempty"`

	// extra vars
	ExtraVars string `json:"extra_vars,omitempty"`

	// force handlers
	ForceHandlers string `json:"force_handlers,omitempty"`

	// forks
	Forks int64 `json:"forks,omitempty"`

	// host config key
	HostConfigKey string `json:"host_config_key,omitempty"`

	// inventory
	Inventory int64 `json:"inventory,omitempty"`

	// The number of jobs to slice into at runtime. Will cause the Job Template to launch a workflow if value is greater than 1.
	JobSliceCount int64 `json:"job_slice_count,omitempty"`

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

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

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

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

	// playbook
	Playbook string `json:"playbook,omitempty"`

	// project
	Project string `json:"project,omitempty"`

	// Branch to use in job run. Project default used if blank. Only allowed if project allow_override field is set to true.
	ScmBranch string `json:"scm_branch,omitempty"`

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

	// start at task
	StartAtTask string `json:"start_at_task,omitempty"`

	// survey enabled
	SurveyEnabled string `json:"survey_enabled,omitempty"`

	// The amount of time (in seconds) to run before the task is canceled.
	Timeout int64 `json:"timeout,omitempty"`

	// 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.
	UseFactCache string `json:"use_fact_cache,omitempty"`

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

	// Personal Access Token for posting back the status to the service API
	WebhookCredential int64 `json:"webhook_credential,omitempty"`

	// Service that webhook requests will be accepted from
	WebhookService string `json:"webhook_service,omitempty"`
}

OrganizationsOrganizationsJobTemplatesCreateBody organizations organizations job templates create body swagger:model OrganizationsOrganizationsJobTemplatesCreateBody

func (*OrganizationsOrganizationsJobTemplatesCreateBody) MarshalBinary

MarshalBinary interface implementation

func (*OrganizationsOrganizationsJobTemplatesCreateBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsJobTemplatesCreateBody) Validate

Validate validates this organizations organizations job templates create body

type OrganizationsOrganizationsJobTemplatesCreateCreated

type OrganizationsOrganizationsJobTemplatesCreateCreated struct {
}

OrganizationsOrganizationsJobTemplatesCreateCreated handles this case with default header values.

OrganizationsOrganizationsJobTemplatesCreateCreated organizations organizations job templates create created

func NewOrganizationsOrganizationsJobTemplatesCreateCreated

func NewOrganizationsOrganizationsJobTemplatesCreateCreated() *OrganizationsOrganizationsJobTemplatesCreateCreated

NewOrganizationsOrganizationsJobTemplatesCreateCreated creates a OrganizationsOrganizationsJobTemplatesCreateCreated with default headers values

func (*OrganizationsOrganizationsJobTemplatesCreateCreated) Error

type OrganizationsOrganizationsJobTemplatesCreateParams

type OrganizationsOrganizationsJobTemplatesCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsJobTemplatesCreateBody
	/*ID*/
	ID string

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

OrganizationsOrganizationsJobTemplatesCreateParams contains all the parameters to send to the API endpoint for the organizations organizations job templates create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsJobTemplatesCreateParams

func NewOrganizationsOrganizationsJobTemplatesCreateParams() *OrganizationsOrganizationsJobTemplatesCreateParams

NewOrganizationsOrganizationsJobTemplatesCreateParams creates a new OrganizationsOrganizationsJobTemplatesCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsJobTemplatesCreateParamsWithContext

func NewOrganizationsOrganizationsJobTemplatesCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsJobTemplatesCreateParams

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

func NewOrganizationsOrganizationsJobTemplatesCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsJobTemplatesCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsJobTemplatesCreateParams

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

func NewOrganizationsOrganizationsJobTemplatesCreateParamsWithTimeout

func NewOrganizationsOrganizationsJobTemplatesCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsJobTemplatesCreateParams

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

func (*OrganizationsOrganizationsJobTemplatesCreateParams) SetContext

SetContext adds the context to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) SetData

SetData adds the data to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) SetID

SetID adds the id to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) WithContext

WithContext adds the context to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) WithData

WithData adds the data to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) WithID

WithID adds the id to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations job templates create params

func (*OrganizationsOrganizationsJobTemplatesCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsJobTemplatesCreateReader

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

OrganizationsOrganizationsJobTemplatesCreateReader is a Reader for the OrganizationsOrganizationsJobTemplatesCreate structure.

func (*OrganizationsOrganizationsJobTemplatesCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsJobTemplatesListOK

type OrganizationsOrganizationsJobTemplatesListOK struct {
}

OrganizationsOrganizationsJobTemplatesListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsJobTemplatesListOK

func NewOrganizationsOrganizationsJobTemplatesListOK() *OrganizationsOrganizationsJobTemplatesListOK

NewOrganizationsOrganizationsJobTemplatesListOK creates a OrganizationsOrganizationsJobTemplatesListOK with default headers values

func (*OrganizationsOrganizationsJobTemplatesListOK) Error

type OrganizationsOrganizationsJobTemplatesListParams

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

OrganizationsOrganizationsJobTemplatesListParams contains all the parameters to send to the API endpoint for the organizations organizations job templates list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsJobTemplatesListParams

func NewOrganizationsOrganizationsJobTemplatesListParams() *OrganizationsOrganizationsJobTemplatesListParams

NewOrganizationsOrganizationsJobTemplatesListParams creates a new OrganizationsOrganizationsJobTemplatesListParams object with the default values initialized.

func NewOrganizationsOrganizationsJobTemplatesListParamsWithContext

func NewOrganizationsOrganizationsJobTemplatesListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsJobTemplatesListParams

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

func NewOrganizationsOrganizationsJobTemplatesListParamsWithHTTPClient

func NewOrganizationsOrganizationsJobTemplatesListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsJobTemplatesListParams

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

func NewOrganizationsOrganizationsJobTemplatesListParamsWithTimeout

func NewOrganizationsOrganizationsJobTemplatesListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsJobTemplatesListParams

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

func (*OrganizationsOrganizationsJobTemplatesListParams) SetContext

SetContext adds the context to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) SetID

SetID adds the id to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) SetPage

SetPage adds the page to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) SetSearch

SetSearch adds the search to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) WithContext

WithContext adds the context to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) WithID

WithID adds the id to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) WithPage

WithPage adds the page to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) WithSearch

WithSearch adds the search to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations job templates list params

func (*OrganizationsOrganizationsJobTemplatesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsJobTemplatesListReader

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

OrganizationsOrganizationsJobTemplatesListReader is a Reader for the OrganizationsOrganizationsJobTemplatesList structure.

func (*OrganizationsOrganizationsJobTemplatesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsListOK

type OrganizationsOrganizationsListOK struct {
}

OrganizationsOrganizationsListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsListOK

func NewOrganizationsOrganizationsListOK() *OrganizationsOrganizationsListOK

NewOrganizationsOrganizationsListOK creates a OrganizationsOrganizationsListOK with default headers values

func (*OrganizationsOrganizationsListOK) Error

type OrganizationsOrganizationsListParams

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

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

func NewOrganizationsOrganizationsListParams

func NewOrganizationsOrganizationsListParams() *OrganizationsOrganizationsListParams

NewOrganizationsOrganizationsListParams creates a new OrganizationsOrganizationsListParams object with the default values initialized.

func NewOrganizationsOrganizationsListParamsWithContext

func NewOrganizationsOrganizationsListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsListParams

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

func NewOrganizationsOrganizationsListParamsWithHTTPClient

func NewOrganizationsOrganizationsListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsListParams

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

func NewOrganizationsOrganizationsListParamsWithTimeout

func NewOrganizationsOrganizationsListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsListParams

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

func (*OrganizationsOrganizationsListParams) SetContext

SetContext adds the context to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) SetPage

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

SetPage adds the page to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) SetSearch

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

SetSearch adds the search to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) SetTimeout

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

SetTimeout adds the timeout to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) WithContext

WithContext adds the context to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) WithPage

WithPage adds the page to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) WithSearch

WithSearch adds the search to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations list params

func (*OrganizationsOrganizationsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsListReader

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

OrganizationsOrganizationsListReader is a Reader for the OrganizationsOrganizationsList structure.

func (*OrganizationsOrganizationsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsListUnauthorized

type OrganizationsOrganizationsListUnauthorized struct {
}

OrganizationsOrganizationsListUnauthorized handles this case with default header values.

Unauthorised

func NewOrganizationsOrganizationsListUnauthorized

func NewOrganizationsOrganizationsListUnauthorized() *OrganizationsOrganizationsListUnauthorized

NewOrganizationsOrganizationsListUnauthorized creates a OrganizationsOrganizationsListUnauthorized with default headers values

func (*OrganizationsOrganizationsListUnauthorized) Error

type OrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated

type OrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated struct {
}

OrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated handles this case with default header values.

OrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated organizations organizations notification templates approvals create created

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated() *OrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated

NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated creates a OrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateCreated) Error

type OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams

type OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams struct {

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

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

OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates approvals create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams() *OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams

NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams creates a new OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams

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

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) SetContext

SetContext adds the context to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) SetData

SetData adds the data to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) SetID

SetID adds the id to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) WithContext

WithContext adds the context to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) WithData

WithData adds the data to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) WithID

WithID adds the id to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates approvals create params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesApprovalsCreateReader

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

OrganizationsOrganizationsNotificationTemplatesApprovalsCreateReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesApprovalsCreate structure.

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsCreateReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesApprovalsListOK

type OrganizationsOrganizationsNotificationTemplatesApprovalsListOK struct {
}

OrganizationsOrganizationsNotificationTemplatesApprovalsListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListOK

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListOK() *OrganizationsOrganizationsNotificationTemplatesApprovalsListOK

NewOrganizationsOrganizationsNotificationTemplatesApprovalsListOK creates a OrganizationsOrganizationsNotificationTemplatesApprovalsListOK with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListOK) Error

type OrganizationsOrganizationsNotificationTemplatesApprovalsListParams

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

OrganizationsOrganizationsNotificationTemplatesApprovalsListParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates approvals list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParams

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParams() *OrganizationsOrganizationsNotificationTemplatesApprovalsListParams

NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParams creates a new OrganizationsOrganizationsNotificationTemplatesApprovalsListParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesApprovalsListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesApprovalsListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesApprovalsListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesApprovalsListParams

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

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) SetContext

SetContext adds the context to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) SetID

SetID adds the id to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) SetPage

SetPage adds the page to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) SetPageSize

SetPageSize adds the pageSize to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) SetSearch

SetSearch adds the search to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) WithContext

WithContext adds the context to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) WithID

WithID adds the id to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) WithPage

WithPage adds the page to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) WithSearch

WithSearch adds the search to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates approvals list params

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesApprovalsListReader

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

OrganizationsOrganizationsNotificationTemplatesApprovalsListReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesApprovalsList structure.

func (*OrganizationsOrganizationsNotificationTemplatesApprovalsListReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesCreateBody

type OrganizationsOrganizationsNotificationTemplatesCreateBody struct {

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

	// Optional custom messages for notification template.
	Messages string `json:"messages,omitempty"`

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

	// notification configuration
	NotificationConfiguration string `json:"notification_configuration,omitempty"`

	// notification type
	// Required: true
	NotificationType *string `json:"notification_type"`

	// organization
	// Required: true
	Organization *int64 `json:"organization"`
}

OrganizationsOrganizationsNotificationTemplatesCreateBody organizations organizations notification templates create body swagger:model OrganizationsOrganizationsNotificationTemplatesCreateBody

func (*OrganizationsOrganizationsNotificationTemplatesCreateBody) MarshalBinary

MarshalBinary interface implementation

func (*OrganizationsOrganizationsNotificationTemplatesCreateBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsNotificationTemplatesCreateBody) Validate

Validate validates this organizations organizations notification templates create body

type OrganizationsOrganizationsNotificationTemplatesCreateCreated

type OrganizationsOrganizationsNotificationTemplatesCreateCreated struct {
}

OrganizationsOrganizationsNotificationTemplatesCreateCreated handles this case with default header values.

OrganizationsOrganizationsNotificationTemplatesCreateCreated organizations organizations notification templates create created

func NewOrganizationsOrganizationsNotificationTemplatesCreateCreated

func NewOrganizationsOrganizationsNotificationTemplatesCreateCreated() *OrganizationsOrganizationsNotificationTemplatesCreateCreated

NewOrganizationsOrganizationsNotificationTemplatesCreateCreated creates a OrganizationsOrganizationsNotificationTemplatesCreateCreated with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesCreateCreated) Error

type OrganizationsOrganizationsNotificationTemplatesCreateParams

type OrganizationsOrganizationsNotificationTemplatesCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsNotificationTemplatesCreateBody
	/*ID*/
	ID string

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

OrganizationsOrganizationsNotificationTemplatesCreateParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesCreateParams

func NewOrganizationsOrganizationsNotificationTemplatesCreateParams() *OrganizationsOrganizationsNotificationTemplatesCreateParams

NewOrganizationsOrganizationsNotificationTemplatesCreateParams creates a new OrganizationsOrganizationsNotificationTemplatesCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesCreateParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesCreateParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesCreateParams

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

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) SetContext

SetContext adds the context to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) SetData

SetData adds the data to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) SetID

SetID adds the id to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) WithContext

WithContext adds the context to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) WithData

WithData adds the data to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) WithID

WithID adds the id to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates create params

func (*OrganizationsOrganizationsNotificationTemplatesCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesCreateReader

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

OrganizationsOrganizationsNotificationTemplatesCreateReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesCreate structure.

func (*OrganizationsOrganizationsNotificationTemplatesCreateReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesErrorCreateBody

type OrganizationsOrganizationsNotificationTemplatesErrorCreateBody struct {

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

	// Optional custom messages for notification template.
	Messages string `json:"messages,omitempty"`

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

	// notification configuration
	NotificationConfiguration string `json:"notification_configuration,omitempty"`

	// notification type
	// Required: true
	NotificationType *string `json:"notification_type"`

	// organization
	// Required: true
	Organization *int64 `json:"organization"`
}

OrganizationsOrganizationsNotificationTemplatesErrorCreateBody organizations organizations notification templates error create body swagger:model OrganizationsOrganizationsNotificationTemplatesErrorCreateBody

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateBody) MarshalBinary

MarshalBinary interface implementation

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateBody) Validate

Validate validates this organizations organizations notification templates error create body

type OrganizationsOrganizationsNotificationTemplatesErrorCreateCreated

type OrganizationsOrganizationsNotificationTemplatesErrorCreateCreated struct {
}

OrganizationsOrganizationsNotificationTemplatesErrorCreateCreated handles this case with default header values.

OrganizationsOrganizationsNotificationTemplatesErrorCreateCreated organizations organizations notification templates error create created

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateCreated

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateCreated() *OrganizationsOrganizationsNotificationTemplatesErrorCreateCreated

NewOrganizationsOrganizationsNotificationTemplatesErrorCreateCreated creates a OrganizationsOrganizationsNotificationTemplatesErrorCreateCreated with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateCreated) Error

type OrganizationsOrganizationsNotificationTemplatesErrorCreateParams

type OrganizationsOrganizationsNotificationTemplatesErrorCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsNotificationTemplatesErrorCreateBody
	/*ID*/
	ID string

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

OrganizationsOrganizationsNotificationTemplatesErrorCreateParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates error create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParams

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParams() *OrganizationsOrganizationsNotificationTemplatesErrorCreateParams

NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParams creates a new OrganizationsOrganizationsNotificationTemplatesErrorCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesErrorCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesErrorCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesErrorCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesErrorCreateParams

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

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) SetContext

SetContext adds the context to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) SetData

SetData adds the data to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) SetID

SetID adds the id to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) WithContext

WithContext adds the context to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) WithData

WithData adds the data to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) WithID

WithID adds the id to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates error create params

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesErrorCreateReader

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

OrganizationsOrganizationsNotificationTemplatesErrorCreateReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesErrorCreate structure.

func (*OrganizationsOrganizationsNotificationTemplatesErrorCreateReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesErrorListOK

type OrganizationsOrganizationsNotificationTemplatesErrorListOK struct {
}

OrganizationsOrganizationsNotificationTemplatesErrorListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsNotificationTemplatesErrorListOK

func NewOrganizationsOrganizationsNotificationTemplatesErrorListOK() *OrganizationsOrganizationsNotificationTemplatesErrorListOK

NewOrganizationsOrganizationsNotificationTemplatesErrorListOK creates a OrganizationsOrganizationsNotificationTemplatesErrorListOK with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesErrorListOK) Error

type OrganizationsOrganizationsNotificationTemplatesErrorListParams

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

OrganizationsOrganizationsNotificationTemplatesErrorListParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates error list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesErrorListParams

func NewOrganizationsOrganizationsNotificationTemplatesErrorListParams() *OrganizationsOrganizationsNotificationTemplatesErrorListParams

NewOrganizationsOrganizationsNotificationTemplatesErrorListParams creates a new OrganizationsOrganizationsNotificationTemplatesErrorListParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesErrorListParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesErrorListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesErrorListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesErrorListParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesErrorListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesErrorListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesErrorListParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesErrorListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesErrorListParams

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

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) SetContext

SetContext adds the context to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) SetID

SetID adds the id to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) SetPage

SetPage adds the page to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) SetPageSize

SetPageSize adds the pageSize to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) SetSearch

SetSearch adds the search to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) WithContext

WithContext adds the context to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) WithID

WithID adds the id to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) WithPage

WithPage adds the page to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) WithSearch

WithSearch adds the search to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates error list params

func (*OrganizationsOrganizationsNotificationTemplatesErrorListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesErrorListReader

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

OrganizationsOrganizationsNotificationTemplatesErrorListReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesErrorList structure.

func (*OrganizationsOrganizationsNotificationTemplatesErrorListReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesListOK

type OrganizationsOrganizationsNotificationTemplatesListOK struct {
}

OrganizationsOrganizationsNotificationTemplatesListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsNotificationTemplatesListOK

func NewOrganizationsOrganizationsNotificationTemplatesListOK() *OrganizationsOrganizationsNotificationTemplatesListOK

NewOrganizationsOrganizationsNotificationTemplatesListOK creates a OrganizationsOrganizationsNotificationTemplatesListOK with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesListOK) Error

type OrganizationsOrganizationsNotificationTemplatesListParams

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

OrganizationsOrganizationsNotificationTemplatesListParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesListParams

func NewOrganizationsOrganizationsNotificationTemplatesListParams() *OrganizationsOrganizationsNotificationTemplatesListParams

NewOrganizationsOrganizationsNotificationTemplatesListParams creates a new OrganizationsOrganizationsNotificationTemplatesListParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesListParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesListParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesListParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesListParams

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

func (*OrganizationsOrganizationsNotificationTemplatesListParams) SetContext

SetContext adds the context to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) SetID

SetID adds the id to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) SetPage

SetPage adds the page to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) SetPageSize

SetPageSize adds the pageSize to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) SetSearch

SetSearch adds the search to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) WithContext

WithContext adds the context to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) WithID

WithID adds the id to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) WithPage

WithPage adds the page to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) WithSearch

WithSearch adds the search to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates list params

func (*OrganizationsOrganizationsNotificationTemplatesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesListReader

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

OrganizationsOrganizationsNotificationTemplatesListReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesList structure.

func (*OrganizationsOrganizationsNotificationTemplatesListReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesStartedCreateCreated

type OrganizationsOrganizationsNotificationTemplatesStartedCreateCreated struct {
}

OrganizationsOrganizationsNotificationTemplatesStartedCreateCreated handles this case with default header values.

OrganizationsOrganizationsNotificationTemplatesStartedCreateCreated organizations organizations notification templates started create created

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateCreated

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateCreated() *OrganizationsOrganizationsNotificationTemplatesStartedCreateCreated

NewOrganizationsOrganizationsNotificationTemplatesStartedCreateCreated creates a OrganizationsOrganizationsNotificationTemplatesStartedCreateCreated with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateCreated) Error

type OrganizationsOrganizationsNotificationTemplatesStartedCreateParams

type OrganizationsOrganizationsNotificationTemplatesStartedCreateParams struct {

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

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

OrganizationsOrganizationsNotificationTemplatesStartedCreateParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates started create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParams

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParams() *OrganizationsOrganizationsNotificationTemplatesStartedCreateParams

NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParams creates a new OrganizationsOrganizationsNotificationTemplatesStartedCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesStartedCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesStartedCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesStartedCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesStartedCreateParams

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

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) SetContext

SetContext adds the context to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) SetData

SetData adds the data to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) SetID

SetID adds the id to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) WithContext

WithContext adds the context to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) WithData

WithData adds the data to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) WithID

WithID adds the id to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates started create params

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesStartedCreateReader

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

OrganizationsOrganizationsNotificationTemplatesStartedCreateReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesStartedCreate structure.

func (*OrganizationsOrganizationsNotificationTemplatesStartedCreateReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesStartedListOK

type OrganizationsOrganizationsNotificationTemplatesStartedListOK struct {
}

OrganizationsOrganizationsNotificationTemplatesStartedListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsNotificationTemplatesStartedListOK

func NewOrganizationsOrganizationsNotificationTemplatesStartedListOK() *OrganizationsOrganizationsNotificationTemplatesStartedListOK

NewOrganizationsOrganizationsNotificationTemplatesStartedListOK creates a OrganizationsOrganizationsNotificationTemplatesStartedListOK with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesStartedListOK) Error

type OrganizationsOrganizationsNotificationTemplatesStartedListParams

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

OrganizationsOrganizationsNotificationTemplatesStartedListParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates started list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesStartedListParams

func NewOrganizationsOrganizationsNotificationTemplatesStartedListParams() *OrganizationsOrganizationsNotificationTemplatesStartedListParams

NewOrganizationsOrganizationsNotificationTemplatesStartedListParams creates a new OrganizationsOrganizationsNotificationTemplatesStartedListParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesStartedListParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesStartedListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesStartedListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesStartedListParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesStartedListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesStartedListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesStartedListParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesStartedListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesStartedListParams

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

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) SetContext

SetContext adds the context to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) SetID

SetID adds the id to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) SetPage

SetPage adds the page to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) SetPageSize

SetPageSize adds the pageSize to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) SetSearch

SetSearch adds the search to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) WithContext

WithContext adds the context to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) WithID

WithID adds the id to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) WithPage

WithPage adds the page to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) WithSearch

WithSearch adds the search to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates started list params

func (*OrganizationsOrganizationsNotificationTemplatesStartedListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesStartedListReader

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

OrganizationsOrganizationsNotificationTemplatesStartedListReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesStartedList structure.

func (*OrganizationsOrganizationsNotificationTemplatesStartedListReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesSuccessCreateBody

type OrganizationsOrganizationsNotificationTemplatesSuccessCreateBody struct {

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

	// Optional custom messages for notification template.
	Messages string `json:"messages,omitempty"`

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

	// notification configuration
	NotificationConfiguration string `json:"notification_configuration,omitempty"`

	// notification type
	// Required: true
	NotificationType *string `json:"notification_type"`

	// organization
	// Required: true
	Organization *int64 `json:"organization"`
}

OrganizationsOrganizationsNotificationTemplatesSuccessCreateBody organizations organizations notification templates success create body swagger:model OrganizationsOrganizationsNotificationTemplatesSuccessCreateBody

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateBody) MarshalBinary

MarshalBinary interface implementation

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateBody) Validate

Validate validates this organizations organizations notification templates success create body

type OrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated

type OrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated struct {
}

OrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated handles this case with default header values.

OrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated organizations organizations notification templates success create created

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated() *OrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated

NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated creates a OrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateCreated) Error

type OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams

type OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsNotificationTemplatesSuccessCreateBody
	/*ID*/
	ID string

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

OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates success create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParams

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParams() *OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams

NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParams creates a new OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams

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

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesSuccessCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams

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

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) SetContext

SetContext adds the context to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) SetData

SetData adds the data to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) SetID

SetID adds the id to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) WithContext

WithContext adds the context to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) WithData

WithData adds the data to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) WithID

WithID adds the id to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates success create params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesSuccessCreateReader

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

OrganizationsOrganizationsNotificationTemplatesSuccessCreateReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesSuccessCreate structure.

func (*OrganizationsOrganizationsNotificationTemplatesSuccessCreateReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsNotificationTemplatesSuccessListOK

type OrganizationsOrganizationsNotificationTemplatesSuccessListOK struct {
}

OrganizationsOrganizationsNotificationTemplatesSuccessListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListOK

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListOK() *OrganizationsOrganizationsNotificationTemplatesSuccessListOK

NewOrganizationsOrganizationsNotificationTemplatesSuccessListOK creates a OrganizationsOrganizationsNotificationTemplatesSuccessListOK with default headers values

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListOK) Error

type OrganizationsOrganizationsNotificationTemplatesSuccessListParams

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

OrganizationsOrganizationsNotificationTemplatesSuccessListParams contains all the parameters to send to the API endpoint for the organizations organizations notification templates success list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListParams

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListParams() *OrganizationsOrganizationsNotificationTemplatesSuccessListParams

NewOrganizationsOrganizationsNotificationTemplatesSuccessListParams creates a new OrganizationsOrganizationsNotificationTemplatesSuccessListParams object with the default values initialized.

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListParamsWithContext

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsNotificationTemplatesSuccessListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListParamsWithHTTPClient

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsNotificationTemplatesSuccessListParams

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

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListParamsWithTimeout

func NewOrganizationsOrganizationsNotificationTemplatesSuccessListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsNotificationTemplatesSuccessListParams

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

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) SetContext

SetContext adds the context to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) SetID

SetID adds the id to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) SetPage

SetPage adds the page to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) SetPageSize

SetPageSize adds the pageSize to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) SetSearch

SetSearch adds the search to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) WithContext

WithContext adds the context to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) WithID

WithID adds the id to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) WithPage

WithPage adds the page to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) WithSearch

WithSearch adds the search to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations notification templates success list params

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsNotificationTemplatesSuccessListReader

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

OrganizationsOrganizationsNotificationTemplatesSuccessListReader is a Reader for the OrganizationsOrganizationsNotificationTemplatesSuccessList structure.

func (*OrganizationsOrganizationsNotificationTemplatesSuccessListReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsObjectRolesListOK

type OrganizationsOrganizationsObjectRolesListOK struct {
}

OrganizationsOrganizationsObjectRolesListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsObjectRolesListOK

func NewOrganizationsOrganizationsObjectRolesListOK() *OrganizationsOrganizationsObjectRolesListOK

NewOrganizationsOrganizationsObjectRolesListOK creates a OrganizationsOrganizationsObjectRolesListOK with default headers values

func (*OrganizationsOrganizationsObjectRolesListOK) Error

type OrganizationsOrganizationsObjectRolesListParams

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

OrganizationsOrganizationsObjectRolesListParams contains all the parameters to send to the API endpoint for the organizations organizations object roles list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsObjectRolesListParams

func NewOrganizationsOrganizationsObjectRolesListParams() *OrganizationsOrganizationsObjectRolesListParams

NewOrganizationsOrganizationsObjectRolesListParams creates a new OrganizationsOrganizationsObjectRolesListParams object with the default values initialized.

func NewOrganizationsOrganizationsObjectRolesListParamsWithContext

func NewOrganizationsOrganizationsObjectRolesListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsObjectRolesListParams

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

func NewOrganizationsOrganizationsObjectRolesListParamsWithHTTPClient

func NewOrganizationsOrganizationsObjectRolesListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsObjectRolesListParams

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

func NewOrganizationsOrganizationsObjectRolesListParamsWithTimeout

func NewOrganizationsOrganizationsObjectRolesListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsObjectRolesListParams

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

func (*OrganizationsOrganizationsObjectRolesListParams) SetContext

SetContext adds the context to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) SetID

SetID adds the id to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) SetPage

SetPage adds the page to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) SetSearch

SetSearch adds the search to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) WithContext

WithContext adds the context to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) WithID

WithID adds the id to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) WithPage

WithPage adds the page to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) WithSearch

WithSearch adds the search to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations object roles list params

func (*OrganizationsOrganizationsObjectRolesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsObjectRolesListReader

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

OrganizationsOrganizationsObjectRolesListReader is a Reader for the OrganizationsOrganizationsObjectRolesList structure.

func (*OrganizationsOrganizationsObjectRolesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsPartialUpdateBadRequest

type OrganizationsOrganizationsPartialUpdateBadRequest struct {
}

OrganizationsOrganizationsPartialUpdateBadRequest handles this case with default header values.

Bad Request

func NewOrganizationsOrganizationsPartialUpdateBadRequest

func NewOrganizationsOrganizationsPartialUpdateBadRequest() *OrganizationsOrganizationsPartialUpdateBadRequest

NewOrganizationsOrganizationsPartialUpdateBadRequest creates a OrganizationsOrganizationsPartialUpdateBadRequest with default headers values

func (*OrganizationsOrganizationsPartialUpdateBadRequest) Error

type OrganizationsOrganizationsPartialUpdateOK

type OrganizationsOrganizationsPartialUpdateOK struct {
}

OrganizationsOrganizationsPartialUpdateOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsPartialUpdateOK

func NewOrganizationsOrganizationsPartialUpdateOK() *OrganizationsOrganizationsPartialUpdateOK

NewOrganizationsOrganizationsPartialUpdateOK creates a OrganizationsOrganizationsPartialUpdateOK with default headers values

func (*OrganizationsOrganizationsPartialUpdateOK) Error

type OrganizationsOrganizationsPartialUpdateParams

type OrganizationsOrganizationsPartialUpdateParams struct {

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

	*/
	Search *string

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

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

func NewOrganizationsOrganizationsPartialUpdateParams

func NewOrganizationsOrganizationsPartialUpdateParams() *OrganizationsOrganizationsPartialUpdateParams

NewOrganizationsOrganizationsPartialUpdateParams creates a new OrganizationsOrganizationsPartialUpdateParams object with the default values initialized.

func NewOrganizationsOrganizationsPartialUpdateParamsWithContext

func NewOrganizationsOrganizationsPartialUpdateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsPartialUpdateParams

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

func NewOrganizationsOrganizationsPartialUpdateParamsWithHTTPClient

func NewOrganizationsOrganizationsPartialUpdateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsPartialUpdateParams

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

func NewOrganizationsOrganizationsPartialUpdateParamsWithTimeout

func NewOrganizationsOrganizationsPartialUpdateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsPartialUpdateParams

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

func (*OrganizationsOrganizationsPartialUpdateParams) SetContext

SetContext adds the context to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) SetData

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

SetData adds the data to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) SetID

SetID adds the id to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) SetSearch

SetSearch adds the search to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) WithContext

WithContext adds the context to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) WithData

WithData adds the data to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) WithID

WithID adds the id to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) WithSearch

WithSearch adds the search to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations partial update params

func (*OrganizationsOrganizationsPartialUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsPartialUpdateReader

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

OrganizationsOrganizationsPartialUpdateReader is a Reader for the OrganizationsOrganizationsPartialUpdate structure.

func (*OrganizationsOrganizationsPartialUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsProjectsCreateBody

type OrganizationsOrganizationsProjectsCreateBody struct {

	// Allow changing the SCM branch or revision in a job template that uses this project.
	AllowOverride string `json:"allow_override,omitempty"`

	// credential
	Credential int64 `json:"credential,omitempty"`

	// Local absolute file path containing a custom Python virtualenv to use
	CustomVirtualenv string `json:"custom_virtualenv,omitempty"`

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

	// Local path (relative to PROJECTS_ROOT) containing playbooks and related files for this project.
	LocalPath string `json:"local_path,omitempty"`

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

	// The organization used to determine access to this template.
	Organization int64 `json:"organization,omitempty"`

	// Specific branch, tag or commit to checkout.
	ScmBranch string `json:"scm_branch,omitempty"`

	// Discard any local changes before syncing the project.
	ScmClean string `json:"scm_clean,omitempty"`

	// Delete the project before syncing.
	ScmDeleteOnUpdate string `json:"scm_delete_on_update,omitempty"`

	// For git projects, an additional refspec to fetch.
	ScmRefspec string `json:"scm_refspec,omitempty"`

	// Specifies the source control system used to store the project.
	ScmType string `json:"scm_type,omitempty"`

	// The number of seconds after the last project update ran that a new project update will be launched as a job dependency.
	ScmUpdateCacheTimeout int64 `json:"scm_update_cache_timeout,omitempty"`

	// Update the project when a job is launched that uses the project.
	ScmUpdateOnLaunch string `json:"scm_update_on_launch,omitempty"`

	// The location where the project is stored.
	ScmURL string `json:"scm_url,omitempty"`

	// The amount of time (in seconds) to run before the task is canceled.
	Timeout int64 `json:"timeout,omitempty"`
}

OrganizationsOrganizationsProjectsCreateBody organizations organizations projects create body swagger:model OrganizationsOrganizationsProjectsCreateBody

func (*OrganizationsOrganizationsProjectsCreateBody) MarshalBinary

MarshalBinary interface implementation

func (*OrganizationsOrganizationsProjectsCreateBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsProjectsCreateBody) Validate

Validate validates this organizations organizations projects create body

type OrganizationsOrganizationsProjectsCreateCreated

type OrganizationsOrganizationsProjectsCreateCreated struct {
}

OrganizationsOrganizationsProjectsCreateCreated handles this case with default header values.

OrganizationsOrganizationsProjectsCreateCreated organizations organizations projects create created

func NewOrganizationsOrganizationsProjectsCreateCreated

func NewOrganizationsOrganizationsProjectsCreateCreated() *OrganizationsOrganizationsProjectsCreateCreated

NewOrganizationsOrganizationsProjectsCreateCreated creates a OrganizationsOrganizationsProjectsCreateCreated with default headers values

func (*OrganizationsOrganizationsProjectsCreateCreated) Error

type OrganizationsOrganizationsProjectsCreateParams

type OrganizationsOrganizationsProjectsCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsProjectsCreateBody
	/*ID*/
	ID string

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

OrganizationsOrganizationsProjectsCreateParams contains all the parameters to send to the API endpoint for the organizations organizations projects create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsProjectsCreateParams

func NewOrganizationsOrganizationsProjectsCreateParams() *OrganizationsOrganizationsProjectsCreateParams

NewOrganizationsOrganizationsProjectsCreateParams creates a new OrganizationsOrganizationsProjectsCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsProjectsCreateParamsWithContext

func NewOrganizationsOrganizationsProjectsCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsProjectsCreateParams

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

func NewOrganizationsOrganizationsProjectsCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsProjectsCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsProjectsCreateParams

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

func NewOrganizationsOrganizationsProjectsCreateParamsWithTimeout

func NewOrganizationsOrganizationsProjectsCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsProjectsCreateParams

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

func (*OrganizationsOrganizationsProjectsCreateParams) SetContext

SetContext adds the context to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) SetData

SetData adds the data to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) SetID

SetID adds the id to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) WithContext

WithContext adds the context to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) WithData

WithData adds the data to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) WithID

WithID adds the id to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations projects create params

func (*OrganizationsOrganizationsProjectsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsProjectsCreateReader

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

OrganizationsOrganizationsProjectsCreateReader is a Reader for the OrganizationsOrganizationsProjectsCreate structure.

func (*OrganizationsOrganizationsProjectsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsProjectsListForbidden

type OrganizationsOrganizationsProjectsListForbidden struct {
}

OrganizationsOrganizationsProjectsListForbidden handles this case with default header values.

No Permission Response

func NewOrganizationsOrganizationsProjectsListForbidden

func NewOrganizationsOrganizationsProjectsListForbidden() *OrganizationsOrganizationsProjectsListForbidden

NewOrganizationsOrganizationsProjectsListForbidden creates a OrganizationsOrganizationsProjectsListForbidden with default headers values

func (*OrganizationsOrganizationsProjectsListForbidden) Error

type OrganizationsOrganizationsProjectsListOK

type OrganizationsOrganizationsProjectsListOK struct {
}

OrganizationsOrganizationsProjectsListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsProjectsListOK

func NewOrganizationsOrganizationsProjectsListOK() *OrganizationsOrganizationsProjectsListOK

NewOrganizationsOrganizationsProjectsListOK creates a OrganizationsOrganizationsProjectsListOK with default headers values

func (*OrganizationsOrganizationsProjectsListOK) Error

type OrganizationsOrganizationsProjectsListParams

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

OrganizationsOrganizationsProjectsListParams contains all the parameters to send to the API endpoint for the organizations organizations projects list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsProjectsListParams

func NewOrganizationsOrganizationsProjectsListParams() *OrganizationsOrganizationsProjectsListParams

NewOrganizationsOrganizationsProjectsListParams creates a new OrganizationsOrganizationsProjectsListParams object with the default values initialized.

func NewOrganizationsOrganizationsProjectsListParamsWithContext

func NewOrganizationsOrganizationsProjectsListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsProjectsListParams

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

func NewOrganizationsOrganizationsProjectsListParamsWithHTTPClient

func NewOrganizationsOrganizationsProjectsListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsProjectsListParams

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

func NewOrganizationsOrganizationsProjectsListParamsWithTimeout

func NewOrganizationsOrganizationsProjectsListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsProjectsListParams

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

func (*OrganizationsOrganizationsProjectsListParams) SetContext

SetContext adds the context to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) SetID

SetID adds the id to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) SetPage

SetPage adds the page to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) SetSearch

SetSearch adds the search to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) WithContext

WithContext adds the context to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) WithID

WithID adds the id to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) WithPage

WithPage adds the page to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) WithSearch

WithSearch adds the search to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations projects list params

func (*OrganizationsOrganizationsProjectsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsProjectsListReader

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

OrganizationsOrganizationsProjectsListReader is a Reader for the OrganizationsOrganizationsProjectsList structure.

func (*OrganizationsOrganizationsProjectsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsReadForbidden

type OrganizationsOrganizationsReadForbidden struct {
}

OrganizationsOrganizationsReadForbidden handles this case with default header values.

No Permission Response

func NewOrganizationsOrganizationsReadForbidden

func NewOrganizationsOrganizationsReadForbidden() *OrganizationsOrganizationsReadForbidden

NewOrganizationsOrganizationsReadForbidden creates a OrganizationsOrganizationsReadForbidden with default headers values

func (*OrganizationsOrganizationsReadForbidden) Error

type OrganizationsOrganizationsReadOK

type OrganizationsOrganizationsReadOK struct {
}

OrganizationsOrganizationsReadOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsReadOK

func NewOrganizationsOrganizationsReadOK() *OrganizationsOrganizationsReadOK

NewOrganizationsOrganizationsReadOK creates a OrganizationsOrganizationsReadOK with default headers values

func (*OrganizationsOrganizationsReadOK) Error

type OrganizationsOrganizationsReadParams

type OrganizationsOrganizationsReadParams struct {

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

	*/
	Search *string

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

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

func NewOrganizationsOrganizationsReadParams

func NewOrganizationsOrganizationsReadParams() *OrganizationsOrganizationsReadParams

NewOrganizationsOrganizationsReadParams creates a new OrganizationsOrganizationsReadParams object with the default values initialized.

func NewOrganizationsOrganizationsReadParamsWithContext

func NewOrganizationsOrganizationsReadParamsWithContext(ctx context.Context) *OrganizationsOrganizationsReadParams

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

func NewOrganizationsOrganizationsReadParamsWithHTTPClient

func NewOrganizationsOrganizationsReadParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsReadParams

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

func NewOrganizationsOrganizationsReadParamsWithTimeout

func NewOrganizationsOrganizationsReadParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsReadParams

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

func (*OrganizationsOrganizationsReadParams) SetContext

SetContext adds the context to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) SetID

SetID adds the id to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) SetSearch

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

SetSearch adds the search to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) SetTimeout

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

SetTimeout adds the timeout to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) WithContext

WithContext adds the context to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) WithID

WithID adds the id to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) WithSearch

WithSearch adds the search to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations read params

func (*OrganizationsOrganizationsReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsReadReader

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

OrganizationsOrganizationsReadReader is a Reader for the OrganizationsOrganizationsRead structure.

func (*OrganizationsOrganizationsReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsReadUnauthorized

type OrganizationsOrganizationsReadUnauthorized struct {
}

OrganizationsOrganizationsReadUnauthorized handles this case with default header values.

Unauthorised

func NewOrganizationsOrganizationsReadUnauthorized

func NewOrganizationsOrganizationsReadUnauthorized() *OrganizationsOrganizationsReadUnauthorized

NewOrganizationsOrganizationsReadUnauthorized creates a OrganizationsOrganizationsReadUnauthorized with default headers values

func (*OrganizationsOrganizationsReadUnauthorized) Error

type OrganizationsOrganizationsTeamsCreateBody

type OrganizationsOrganizationsTeamsCreateBody struct {

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

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

	// organization
	// Required: true
	Organization *int64 `json:"organization"`
}

OrganizationsOrganizationsTeamsCreateBody organizations organizations teams create body swagger:model OrganizationsOrganizationsTeamsCreateBody

func (*OrganizationsOrganizationsTeamsCreateBody) MarshalBinary

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

MarshalBinary interface implementation

func (*OrganizationsOrganizationsTeamsCreateBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsTeamsCreateBody) Validate

Validate validates this organizations organizations teams create body

type OrganizationsOrganizationsTeamsCreateCreated

type OrganizationsOrganizationsTeamsCreateCreated struct {
}

OrganizationsOrganizationsTeamsCreateCreated handles this case with default header values.

OrganizationsOrganizationsTeamsCreateCreated organizations organizations teams create created

func NewOrganizationsOrganizationsTeamsCreateCreated

func NewOrganizationsOrganizationsTeamsCreateCreated() *OrganizationsOrganizationsTeamsCreateCreated

NewOrganizationsOrganizationsTeamsCreateCreated creates a OrganizationsOrganizationsTeamsCreateCreated with default headers values

func (*OrganizationsOrganizationsTeamsCreateCreated) Error

type OrganizationsOrganizationsTeamsCreateParams

type OrganizationsOrganizationsTeamsCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsTeamsCreateBody
	/*ID*/
	ID string

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

OrganizationsOrganizationsTeamsCreateParams contains all the parameters to send to the API endpoint for the organizations organizations teams create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsTeamsCreateParams

func NewOrganizationsOrganizationsTeamsCreateParams() *OrganizationsOrganizationsTeamsCreateParams

NewOrganizationsOrganizationsTeamsCreateParams creates a new OrganizationsOrganizationsTeamsCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsTeamsCreateParamsWithContext

func NewOrganizationsOrganizationsTeamsCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsTeamsCreateParams

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

func NewOrganizationsOrganizationsTeamsCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsTeamsCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsTeamsCreateParams

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

func NewOrganizationsOrganizationsTeamsCreateParamsWithTimeout

func NewOrganizationsOrganizationsTeamsCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsTeamsCreateParams

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

func (*OrganizationsOrganizationsTeamsCreateParams) SetContext

SetContext adds the context to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) SetData

SetData adds the data to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) SetID

SetID adds the id to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) WithContext

WithContext adds the context to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) WithData

WithData adds the data to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) WithID

WithID adds the id to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations teams create params

func (*OrganizationsOrganizationsTeamsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsTeamsCreateReader

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

OrganizationsOrganizationsTeamsCreateReader is a Reader for the OrganizationsOrganizationsTeamsCreate structure.

func (*OrganizationsOrganizationsTeamsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsTeamsListOK

type OrganizationsOrganizationsTeamsListOK struct {
}

OrganizationsOrganizationsTeamsListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsTeamsListOK

func NewOrganizationsOrganizationsTeamsListOK() *OrganizationsOrganizationsTeamsListOK

NewOrganizationsOrganizationsTeamsListOK creates a OrganizationsOrganizationsTeamsListOK with default headers values

func (*OrganizationsOrganizationsTeamsListOK) Error

type OrganizationsOrganizationsTeamsListParams

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

OrganizationsOrganizationsTeamsListParams contains all the parameters to send to the API endpoint for the organizations organizations teams list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsTeamsListParams

func NewOrganizationsOrganizationsTeamsListParams() *OrganizationsOrganizationsTeamsListParams

NewOrganizationsOrganizationsTeamsListParams creates a new OrganizationsOrganizationsTeamsListParams object with the default values initialized.

func NewOrganizationsOrganizationsTeamsListParamsWithContext

func NewOrganizationsOrganizationsTeamsListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsTeamsListParams

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

func NewOrganizationsOrganizationsTeamsListParamsWithHTTPClient

func NewOrganizationsOrganizationsTeamsListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsTeamsListParams

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

func NewOrganizationsOrganizationsTeamsListParamsWithTimeout

func NewOrganizationsOrganizationsTeamsListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsTeamsListParams

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

func (*OrganizationsOrganizationsTeamsListParams) SetContext

SetContext adds the context to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) SetID

SetID adds the id to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) SetPage

SetPage adds the page to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) SetSearch

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

SetSearch adds the search to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) WithContext

WithContext adds the context to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) WithID

WithID adds the id to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) WithPage

WithPage adds the page to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) WithSearch

WithSearch adds the search to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations teams list params

func (*OrganizationsOrganizationsTeamsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsTeamsListReader

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

OrganizationsOrganizationsTeamsListReader is a Reader for the OrganizationsOrganizationsTeamsList structure.

func (*OrganizationsOrganizationsTeamsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsUpdateBadRequest

type OrganizationsOrganizationsUpdateBadRequest struct {
}

OrganizationsOrganizationsUpdateBadRequest handles this case with default header values.

Bad Request

func NewOrganizationsOrganizationsUpdateBadRequest

func NewOrganizationsOrganizationsUpdateBadRequest() *OrganizationsOrganizationsUpdateBadRequest

NewOrganizationsOrganizationsUpdateBadRequest creates a OrganizationsOrganizationsUpdateBadRequest with default headers values

func (*OrganizationsOrganizationsUpdateBadRequest) Error

type OrganizationsOrganizationsUpdateForbidden

type OrganizationsOrganizationsUpdateForbidden struct {
}

OrganizationsOrganizationsUpdateForbidden handles this case with default header values.

No Permission Response

func NewOrganizationsOrganizationsUpdateForbidden

func NewOrganizationsOrganizationsUpdateForbidden() *OrganizationsOrganizationsUpdateForbidden

NewOrganizationsOrganizationsUpdateForbidden creates a OrganizationsOrganizationsUpdateForbidden with default headers values

func (*OrganizationsOrganizationsUpdateForbidden) Error

type OrganizationsOrganizationsUpdateOK

type OrganizationsOrganizationsUpdateOK struct {
}

OrganizationsOrganizationsUpdateOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsUpdateOK

func NewOrganizationsOrganizationsUpdateOK() *OrganizationsOrganizationsUpdateOK

NewOrganizationsOrganizationsUpdateOK creates a OrganizationsOrganizationsUpdateOK with default headers values

func (*OrganizationsOrganizationsUpdateOK) Error

type OrganizationsOrganizationsUpdateParams

type OrganizationsOrganizationsUpdateParams struct {

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

	*/
	Search *string

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

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

func NewOrganizationsOrganizationsUpdateParams

func NewOrganizationsOrganizationsUpdateParams() *OrganizationsOrganizationsUpdateParams

NewOrganizationsOrganizationsUpdateParams creates a new OrganizationsOrganizationsUpdateParams object with the default values initialized.

func NewOrganizationsOrganizationsUpdateParamsWithContext

func NewOrganizationsOrganizationsUpdateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsUpdateParams

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

func NewOrganizationsOrganizationsUpdateParamsWithHTTPClient

func NewOrganizationsOrganizationsUpdateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsUpdateParams

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

func NewOrganizationsOrganizationsUpdateParamsWithTimeout

func NewOrganizationsOrganizationsUpdateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsUpdateParams

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

func (*OrganizationsOrganizationsUpdateParams) SetContext

SetContext adds the context to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) SetData

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

SetData adds the data to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) SetID

SetID adds the id to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) SetSearch

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

SetSearch adds the search to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) WithContext

WithContext adds the context to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) WithData

WithData adds the data to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) WithID

WithID adds the id to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) WithSearch

WithSearch adds the search to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations update params

func (*OrganizationsOrganizationsUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsUpdateReader

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

OrganizationsOrganizationsUpdateReader is a Reader for the OrganizationsOrganizationsUpdate structure.

func (*OrganizationsOrganizationsUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsUsersCreateCreated

type OrganizationsOrganizationsUsersCreateCreated struct {
}

OrganizationsOrganizationsUsersCreateCreated handles this case with default header values.

OrganizationsOrganizationsUsersCreateCreated organizations organizations users create created

func NewOrganizationsOrganizationsUsersCreateCreated

func NewOrganizationsOrganizationsUsersCreateCreated() *OrganizationsOrganizationsUsersCreateCreated

NewOrganizationsOrganizationsUsersCreateCreated creates a OrganizationsOrganizationsUsersCreateCreated with default headers values

func (*OrganizationsOrganizationsUsersCreateCreated) Error

type OrganizationsOrganizationsUsersCreateForbidden

type OrganizationsOrganizationsUsersCreateForbidden struct {
}

OrganizationsOrganizationsUsersCreateForbidden handles this case with default header values.

No Permission Response

func NewOrganizationsOrganizationsUsersCreateForbidden

func NewOrganizationsOrganizationsUsersCreateForbidden() *OrganizationsOrganizationsUsersCreateForbidden

NewOrganizationsOrganizationsUsersCreateForbidden creates a OrganizationsOrganizationsUsersCreateForbidden with default headers values

func (*OrganizationsOrganizationsUsersCreateForbidden) Error

type OrganizationsOrganizationsUsersCreateParams

type OrganizationsOrganizationsUsersCreateParams struct {

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

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

OrganizationsOrganizationsUsersCreateParams contains all the parameters to send to the API endpoint for the organizations organizations users create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsUsersCreateParams

func NewOrganizationsOrganizationsUsersCreateParams() *OrganizationsOrganizationsUsersCreateParams

NewOrganizationsOrganizationsUsersCreateParams creates a new OrganizationsOrganizationsUsersCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsUsersCreateParamsWithContext

func NewOrganizationsOrganizationsUsersCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsUsersCreateParams

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

func NewOrganizationsOrganizationsUsersCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsUsersCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsUsersCreateParams

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

func NewOrganizationsOrganizationsUsersCreateParamsWithTimeout

func NewOrganizationsOrganizationsUsersCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsUsersCreateParams

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

func (*OrganizationsOrganizationsUsersCreateParams) SetContext

SetContext adds the context to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) SetData

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

SetData adds the data to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) SetID

SetID adds the id to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) WithContext

WithContext adds the context to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) WithData

WithData adds the data to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) WithID

WithID adds the id to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations users create params

func (*OrganizationsOrganizationsUsersCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsUsersCreateReader

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

OrganizationsOrganizationsUsersCreateReader is a Reader for the OrganizationsOrganizationsUsersCreate structure.

func (*OrganizationsOrganizationsUsersCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsUsersListOK

type OrganizationsOrganizationsUsersListOK struct {
}

OrganizationsOrganizationsUsersListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsUsersListOK

func NewOrganizationsOrganizationsUsersListOK() *OrganizationsOrganizationsUsersListOK

NewOrganizationsOrganizationsUsersListOK creates a OrganizationsOrganizationsUsersListOK with default headers values

func (*OrganizationsOrganizationsUsersListOK) Error

type OrganizationsOrganizationsUsersListParams

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

OrganizationsOrganizationsUsersListParams contains all the parameters to send to the API endpoint for the organizations organizations users list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsUsersListParams

func NewOrganizationsOrganizationsUsersListParams() *OrganizationsOrganizationsUsersListParams

NewOrganizationsOrganizationsUsersListParams creates a new OrganizationsOrganizationsUsersListParams object with the default values initialized.

func NewOrganizationsOrganizationsUsersListParamsWithContext

func NewOrganizationsOrganizationsUsersListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsUsersListParams

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

func NewOrganizationsOrganizationsUsersListParamsWithHTTPClient

func NewOrganizationsOrganizationsUsersListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsUsersListParams

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

func NewOrganizationsOrganizationsUsersListParamsWithTimeout

func NewOrganizationsOrganizationsUsersListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsUsersListParams

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

func (*OrganizationsOrganizationsUsersListParams) SetContext

SetContext adds the context to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) SetID

SetID adds the id to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) SetPage

SetPage adds the page to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) SetPageSize

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

SetPageSize adds the pageSize to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) SetSearch

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

SetSearch adds the search to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) WithContext

WithContext adds the context to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) WithID

WithID adds the id to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) WithPage

WithPage adds the page to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) WithSearch

WithSearch adds the search to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations users list params

func (*OrganizationsOrganizationsUsersListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsUsersListReader

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

OrganizationsOrganizationsUsersListReader is a Reader for the OrganizationsOrganizationsUsersList structure.

func (*OrganizationsOrganizationsUsersListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsWorkflowJobTemplatesCreateBody

type OrganizationsOrganizationsWorkflowJobTemplatesCreateBody struct {

	// allow simultaneous
	AllowSimultaneous string `json:"allow_simultaneous,omitempty"`

	// ask inventory on launch
	AskInventoryOnLaunch string `json:"ask_inventory_on_launch,omitempty"`

	// ask limit on launch
	AskLimitOnLaunch string `json:"ask_limit_on_launch,omitempty"`

	// ask scm branch on launch
	AskScmBranchOnLaunch string `json:"ask_scm_branch_on_launch,omitempty"`

	// ask variables on launch
	AskVariablesOnLaunch string `json:"ask_variables_on_launch,omitempty"`

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

	// extra vars
	ExtraVars string `json:"extra_vars,omitempty"`

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

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

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

	// The organization used to determine access to this template.
	Organization int64 `json:"organization,omitempty"`

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

	// survey enabled
	SurveyEnabled string `json:"survey_enabled,omitempty"`

	// Personal Access Token for posting back the status to the service API
	WebhookCredential int64 `json:"webhook_credential,omitempty"`

	// Service that webhook requests will be accepted from
	WebhookService string `json:"webhook_service,omitempty"`
}

OrganizationsOrganizationsWorkflowJobTemplatesCreateBody organizations organizations workflow job templates create body swagger:model OrganizationsOrganizationsWorkflowJobTemplatesCreateBody

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateBody) MarshalBinary

MarshalBinary interface implementation

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateBody) Validate

Validate validates this organizations organizations workflow job templates create body

type OrganizationsOrganizationsWorkflowJobTemplatesCreateCreated

type OrganizationsOrganizationsWorkflowJobTemplatesCreateCreated struct {
}

OrganizationsOrganizationsWorkflowJobTemplatesCreateCreated handles this case with default header values.

OrganizationsOrganizationsWorkflowJobTemplatesCreateCreated organizations organizations workflow job templates create created

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateCreated

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateCreated() *OrganizationsOrganizationsWorkflowJobTemplatesCreateCreated

NewOrganizationsOrganizationsWorkflowJobTemplatesCreateCreated creates a OrganizationsOrganizationsWorkflowJobTemplatesCreateCreated with default headers values

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateCreated) Error

type OrganizationsOrganizationsWorkflowJobTemplatesCreateParams

type OrganizationsOrganizationsWorkflowJobTemplatesCreateParams struct {

	/*Data*/
	Data OrganizationsOrganizationsWorkflowJobTemplatesCreateBody
	/*ID*/
	ID string

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

OrganizationsOrganizationsWorkflowJobTemplatesCreateParams contains all the parameters to send to the API endpoint for the organizations organizations workflow job templates create operation typically these are written to a http.Request

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParams

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParams() *OrganizationsOrganizationsWorkflowJobTemplatesCreateParams

NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParams creates a new OrganizationsOrganizationsWorkflowJobTemplatesCreateParams object with the default values initialized.

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParamsWithContext

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParamsWithContext(ctx context.Context) *OrganizationsOrganizationsWorkflowJobTemplatesCreateParams

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

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParamsWithHTTPClient

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsWorkflowJobTemplatesCreateParams

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

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParamsWithTimeout

func NewOrganizationsOrganizationsWorkflowJobTemplatesCreateParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsWorkflowJobTemplatesCreateParams

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

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) SetContext

SetContext adds the context to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) SetData

SetData adds the data to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) SetID

SetID adds the id to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) WithContext

WithContext adds the context to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) WithData

WithData adds the data to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) WithID

WithID adds the id to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations workflow job templates create params

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsWorkflowJobTemplatesCreateReader

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

OrganizationsOrganizationsWorkflowJobTemplatesCreateReader is a Reader for the OrganizationsOrganizationsWorkflowJobTemplatesCreate structure.

func (*OrganizationsOrganizationsWorkflowJobTemplatesCreateReader) ReadResponse

ReadResponse reads a server response into the received o.

type OrganizationsOrganizationsWorkflowJobTemplatesListOK

type OrganizationsOrganizationsWorkflowJobTemplatesListOK struct {
}

OrganizationsOrganizationsWorkflowJobTemplatesListOK handles this case with default header values.

OK

func NewOrganizationsOrganizationsWorkflowJobTemplatesListOK

func NewOrganizationsOrganizationsWorkflowJobTemplatesListOK() *OrganizationsOrganizationsWorkflowJobTemplatesListOK

NewOrganizationsOrganizationsWorkflowJobTemplatesListOK creates a OrganizationsOrganizationsWorkflowJobTemplatesListOK with default headers values

func (*OrganizationsOrganizationsWorkflowJobTemplatesListOK) Error

type OrganizationsOrganizationsWorkflowJobTemplatesListParams

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

OrganizationsOrganizationsWorkflowJobTemplatesListParams contains all the parameters to send to the API endpoint for the organizations organizations workflow job templates list operation typically these are written to a http.Request

func NewOrganizationsOrganizationsWorkflowJobTemplatesListParams

func NewOrganizationsOrganizationsWorkflowJobTemplatesListParams() *OrganizationsOrganizationsWorkflowJobTemplatesListParams

NewOrganizationsOrganizationsWorkflowJobTemplatesListParams creates a new OrganizationsOrganizationsWorkflowJobTemplatesListParams object with the default values initialized.

func NewOrganizationsOrganizationsWorkflowJobTemplatesListParamsWithContext

func NewOrganizationsOrganizationsWorkflowJobTemplatesListParamsWithContext(ctx context.Context) *OrganizationsOrganizationsWorkflowJobTemplatesListParams

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

func NewOrganizationsOrganizationsWorkflowJobTemplatesListParamsWithHTTPClient

func NewOrganizationsOrganizationsWorkflowJobTemplatesListParamsWithHTTPClient(client *http.Client) *OrganizationsOrganizationsWorkflowJobTemplatesListParams

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

func NewOrganizationsOrganizationsWorkflowJobTemplatesListParamsWithTimeout

func NewOrganizationsOrganizationsWorkflowJobTemplatesListParamsWithTimeout(timeout time.Duration) *OrganizationsOrganizationsWorkflowJobTemplatesListParams

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

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) SetContext

SetContext adds the context to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) SetID

SetID adds the id to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) SetPage

SetPage adds the page to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) SetPageSize

SetPageSize adds the pageSize to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) SetSearch

SetSearch adds the search to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) SetTimeout

SetTimeout adds the timeout to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) WithContext

WithContext adds the context to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) WithID

WithID adds the id to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) WithPage

WithPage adds the page to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) WithPageSize

WithPageSize adds the pageSize to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) WithSearch

WithSearch adds the search to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) WithTimeout

WithTimeout adds the timeout to the organizations organizations workflow job templates list params

func (*OrganizationsOrganizationsWorkflowJobTemplatesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type OrganizationsOrganizationsWorkflowJobTemplatesListReader

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

OrganizationsOrganizationsWorkflowJobTemplatesListReader is a Reader for the OrganizationsOrganizationsWorkflowJobTemplatesList structure.

func (*OrganizationsOrganizationsWorkflowJobTemplatesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL