credentials

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 credentials API

func (*Client) CredentialsCredentialsAccessListList

func (a *Client) CredentialsCredentialsAccessListList(params *CredentialsCredentialsAccessListListParams) (*CredentialsCredentialsAccessListListOK, error)
CredentialsCredentialsAccessListList 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) CredentialsCredentialsActivityStreamList

func (a *Client) CredentialsCredentialsActivityStreamList(params *CredentialsCredentialsActivityStreamListParams) (*CredentialsCredentialsActivityStreamListOK, error)
CredentialsCredentialsActivityStreamList lists activity streams for a credential

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

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

func (a *Client) CredentialsCredentialsCopyCreate(params *CredentialsCredentialsCopyCreateParams) (*CredentialsCredentialsCopyCreateCreated, error)

CredentialsCredentialsCopyCreate credentials credentials copy create API

func (*Client) CredentialsCredentialsCopyList

func (a *Client) CredentialsCredentialsCopyList(params *CredentialsCredentialsCopyListParams) (*CredentialsCredentialsCopyListOK, error)

CredentialsCredentialsCopyList credentials credentials copy list API

func (*Client) CredentialsCredentialsCreate

func (a *Client) CredentialsCredentialsCreate(params *CredentialsCredentialsCreateParams) (*CredentialsCredentialsCreateCreated, error)
CredentialsCredentialsCreate creates a credential

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

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

* `user`: Write-only field used to add user to owner role. If provided, do not give either team or organization. Only valid for creation. (id, default=`None`) * `team`: Write-only field used to add team to owner role. If provided, do not give either user or organization. Only valid for creation. (id, default=`None`)

func (*Client) CredentialsCredentialsDelete

func (a *Client) CredentialsCredentialsDelete(params *CredentialsCredentialsDeleteParams) (*CredentialsCredentialsDeleteNoContent, error)
CredentialsCredentialsDelete deletes a credential

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

func (*Client) CredentialsCredentialsInputSourcesCreate

CredentialsCredentialsInputSourcesCreate creates a credential input source for a credential

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

* `description`: Optional description of this credential input source. (string, default=`""`) * `input_field_name`: (string, required) * `metadata`: (json, default=`{}`)

* `source_credential`: (id, required)

func (*Client) CredentialsCredentialsInputSourcesList

func (a *Client) CredentialsCredentialsInputSourcesList(params *CredentialsCredentialsInputSourcesListParams) (*CredentialsCredentialsInputSourcesListOK, error)
CredentialsCredentialsInputSourcesList lists credential input sources for a credential

Make a GET request to this resource to retrieve a list of credential input sources associated with the selected credential.

The resulting data structure contains:

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

The `count` field indicates the total number of credential input sources 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 input source records.

## Results

Each credential input source data structure includes the following fields:

* `id`: Database ID for this credential input source. (integer) * `type`: Data type for this credential input source. (choice) * `url`: URL for this credential input source. (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 input source was created. (datetime) * `modified`: Timestamp when this credential input source was last modified. (datetime) * `description`: Optional description of this credential input source. (string) * `input_field_name`: (string) * `metadata`: (json) * `target_credential`: (id) * `source_credential`: (id)

## Sorting

To specify that credential input sources 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) CredentialsCredentialsList

func (a *Client) CredentialsCredentialsList(params *CredentialsCredentialsListParams) (*CredentialsCredentialsListOK, error)
CredentialsCredentialsList lists credentials

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

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

func (a *Client) CredentialsCredentialsObjectRolesList(params *CredentialsCredentialsObjectRolesListParams) (*CredentialsCredentialsObjectRolesListOK, error)
CredentialsCredentialsObjectRolesList lists roles for a credential

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

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

func (a *Client) CredentialsCredentialsOwnerTeamsList(params *CredentialsCredentialsOwnerTeamsListParams) (*CredentialsCredentialsOwnerTeamsListOK, error)
CredentialsCredentialsOwnerTeamsList lists teams for a credential

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

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

func (a *Client) CredentialsCredentialsOwnerUsersList(params *CredentialsCredentialsOwnerUsersListParams) (*CredentialsCredentialsOwnerUsersListOK, error)
CredentialsCredentialsOwnerUsersList lists users for a credential

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

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

func (a *Client) CredentialsCredentialsPartialUpdate(params *CredentialsCredentialsPartialUpdateParams) (*CredentialsCredentialsPartialUpdateOK, error)
CredentialsCredentialsPartialUpdate updates a credential

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

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

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

func (*Client) CredentialsCredentialsRead

func (a *Client) CredentialsCredentialsRead(params *CredentialsCredentialsReadParams) (*CredentialsCredentialsReadOK, error)
CredentialsCredentialsRead retrieves a credential

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

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

func (*Client) CredentialsCredentialsTestCreate

CredentialsCredentialsTestCreate retrieves a credential

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

func (*Client) CredentialsCredentialsTestRead

func (a *Client) CredentialsCredentialsTestRead(params *CredentialsCredentialsTestReadParams) (*CredentialsCredentialsTestReadOK, error)
CredentialsCredentialsTestRead retrieves a credential

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

func (*Client) CredentialsCredentialsUpdate

func (a *Client) CredentialsCredentialsUpdate(params *CredentialsCredentialsUpdateParams) (*CredentialsCredentialsUpdateOK, error)
CredentialsCredentialsUpdate updates a credential

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

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

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

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	CredentialsCredentialsAccessListList(params *CredentialsCredentialsAccessListListParams) (*CredentialsCredentialsAccessListListOK, error)

	CredentialsCredentialsActivityStreamList(params *CredentialsCredentialsActivityStreamListParams) (*CredentialsCredentialsActivityStreamListOK, error)

	CredentialsCredentialsCopyCreate(params *CredentialsCredentialsCopyCreateParams) (*CredentialsCredentialsCopyCreateCreated, error)

	CredentialsCredentialsCopyList(params *CredentialsCredentialsCopyListParams) (*CredentialsCredentialsCopyListOK, error)

	CredentialsCredentialsCreate(params *CredentialsCredentialsCreateParams) (*CredentialsCredentialsCreateCreated, error)

	CredentialsCredentialsDelete(params *CredentialsCredentialsDeleteParams) (*CredentialsCredentialsDeleteNoContent, error)

	CredentialsCredentialsInputSourcesCreate(params *CredentialsCredentialsInputSourcesCreateParams) (*CredentialsCredentialsInputSourcesCreateCreated, error)

	CredentialsCredentialsInputSourcesList(params *CredentialsCredentialsInputSourcesListParams) (*CredentialsCredentialsInputSourcesListOK, error)

	CredentialsCredentialsList(params *CredentialsCredentialsListParams) (*CredentialsCredentialsListOK, error)

	CredentialsCredentialsObjectRolesList(params *CredentialsCredentialsObjectRolesListParams) (*CredentialsCredentialsObjectRolesListOK, error)

	CredentialsCredentialsOwnerTeamsList(params *CredentialsCredentialsOwnerTeamsListParams) (*CredentialsCredentialsOwnerTeamsListOK, error)

	CredentialsCredentialsOwnerUsersList(params *CredentialsCredentialsOwnerUsersListParams) (*CredentialsCredentialsOwnerUsersListOK, error)

	CredentialsCredentialsPartialUpdate(params *CredentialsCredentialsPartialUpdateParams) (*CredentialsCredentialsPartialUpdateOK, error)

	CredentialsCredentialsRead(params *CredentialsCredentialsReadParams) (*CredentialsCredentialsReadOK, error)

	CredentialsCredentialsTestCreate(params *CredentialsCredentialsTestCreateParams) (*CredentialsCredentialsTestCreateCreated, *CredentialsCredentialsTestCreateAccepted, error)

	CredentialsCredentialsTestRead(params *CredentialsCredentialsTestReadParams) (*CredentialsCredentialsTestReadOK, error)

	CredentialsCredentialsUpdate(params *CredentialsCredentialsUpdateParams) (*CredentialsCredentialsUpdateOK, 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 credentials API client.

type CredentialsCredentialsAccessListListOK

type CredentialsCredentialsAccessListListOK struct {
}

CredentialsCredentialsAccessListListOK handles this case with default header values.

OK

func NewCredentialsCredentialsAccessListListOK

func NewCredentialsCredentialsAccessListListOK() *CredentialsCredentialsAccessListListOK

NewCredentialsCredentialsAccessListListOK creates a CredentialsCredentialsAccessListListOK with default headers values

func (*CredentialsCredentialsAccessListListOK) Error

type CredentialsCredentialsAccessListListParams

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

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

func NewCredentialsCredentialsAccessListListParams

func NewCredentialsCredentialsAccessListListParams() *CredentialsCredentialsAccessListListParams

NewCredentialsCredentialsAccessListListParams creates a new CredentialsCredentialsAccessListListParams object with the default values initialized.

func NewCredentialsCredentialsAccessListListParamsWithContext

func NewCredentialsCredentialsAccessListListParamsWithContext(ctx context.Context) *CredentialsCredentialsAccessListListParams

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

func NewCredentialsCredentialsAccessListListParamsWithHTTPClient

func NewCredentialsCredentialsAccessListListParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsAccessListListParams

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

func NewCredentialsCredentialsAccessListListParamsWithTimeout

func NewCredentialsCredentialsAccessListListParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsAccessListListParams

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

func (*CredentialsCredentialsAccessListListParams) SetContext

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

func (*CredentialsCredentialsAccessListListParams) SetHTTPClient

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

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

func (*CredentialsCredentialsAccessListListParams) SetID

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

func (*CredentialsCredentialsAccessListListParams) SetPage

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

func (*CredentialsCredentialsAccessListListParams) SetPageSize

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

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

func (*CredentialsCredentialsAccessListListParams) SetSearch

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

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

func (*CredentialsCredentialsAccessListListParams) SetTimeout

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

func (*CredentialsCredentialsAccessListListParams) WithContext

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

func (*CredentialsCredentialsAccessListListParams) WithHTTPClient

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

func (*CredentialsCredentialsAccessListListParams) WithID

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

func (*CredentialsCredentialsAccessListListParams) WithPage

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

func (*CredentialsCredentialsAccessListListParams) WithPageSize

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

func (*CredentialsCredentialsAccessListListParams) WithSearch

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

func (*CredentialsCredentialsAccessListListParams) WithTimeout

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

func (*CredentialsCredentialsAccessListListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsAccessListListReader

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

CredentialsCredentialsAccessListListReader is a Reader for the CredentialsCredentialsAccessListList structure.

func (*CredentialsCredentialsAccessListListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsActivityStreamListOK

type CredentialsCredentialsActivityStreamListOK struct {
}

CredentialsCredentialsActivityStreamListOK handles this case with default header values.

OK

func NewCredentialsCredentialsActivityStreamListOK

func NewCredentialsCredentialsActivityStreamListOK() *CredentialsCredentialsActivityStreamListOK

NewCredentialsCredentialsActivityStreamListOK creates a CredentialsCredentialsActivityStreamListOK with default headers values

func (*CredentialsCredentialsActivityStreamListOK) Error

type CredentialsCredentialsActivityStreamListParams

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

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

func NewCredentialsCredentialsActivityStreamListParams

func NewCredentialsCredentialsActivityStreamListParams() *CredentialsCredentialsActivityStreamListParams

NewCredentialsCredentialsActivityStreamListParams creates a new CredentialsCredentialsActivityStreamListParams object with the default values initialized.

func NewCredentialsCredentialsActivityStreamListParamsWithContext

func NewCredentialsCredentialsActivityStreamListParamsWithContext(ctx context.Context) *CredentialsCredentialsActivityStreamListParams

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

func NewCredentialsCredentialsActivityStreamListParamsWithHTTPClient

func NewCredentialsCredentialsActivityStreamListParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsActivityStreamListParams

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

func NewCredentialsCredentialsActivityStreamListParamsWithTimeout

func NewCredentialsCredentialsActivityStreamListParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsActivityStreamListParams

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

func (*CredentialsCredentialsActivityStreamListParams) SetContext

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

func (*CredentialsCredentialsActivityStreamListParams) SetHTTPClient

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

func (*CredentialsCredentialsActivityStreamListParams) SetID

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

func (*CredentialsCredentialsActivityStreamListParams) SetPage

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

func (*CredentialsCredentialsActivityStreamListParams) SetPageSize

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

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

func (*CredentialsCredentialsActivityStreamListParams) SetSearch

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

func (*CredentialsCredentialsActivityStreamListParams) SetTimeout

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

func (*CredentialsCredentialsActivityStreamListParams) WithContext

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

func (*CredentialsCredentialsActivityStreamListParams) WithHTTPClient

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

func (*CredentialsCredentialsActivityStreamListParams) WithID

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

func (*CredentialsCredentialsActivityStreamListParams) WithPage

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

func (*CredentialsCredentialsActivityStreamListParams) WithPageSize

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

func (*CredentialsCredentialsActivityStreamListParams) WithSearch

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

func (*CredentialsCredentialsActivityStreamListParams) WithTimeout

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

func (*CredentialsCredentialsActivityStreamListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsActivityStreamListReader

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

CredentialsCredentialsActivityStreamListReader is a Reader for the CredentialsCredentialsActivityStreamList structure.

func (*CredentialsCredentialsActivityStreamListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsCopyCreateBody

type CredentialsCredentialsCopyCreateBody struct {

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

CredentialsCredentialsCopyCreateBody credentials credentials copy create body swagger:model CredentialsCredentialsCopyCreateBody

func (*CredentialsCredentialsCopyCreateBody) MarshalBinary

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

MarshalBinary interface implementation

func (*CredentialsCredentialsCopyCreateBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*CredentialsCredentialsCopyCreateBody) Validate

Validate validates this credentials credentials copy create body

type CredentialsCredentialsCopyCreateCreated

type CredentialsCredentialsCopyCreateCreated struct {
}

CredentialsCredentialsCopyCreateCreated handles this case with default header values.

CredentialsCredentialsCopyCreateCreated credentials credentials copy create created

func NewCredentialsCredentialsCopyCreateCreated

func NewCredentialsCredentialsCopyCreateCreated() *CredentialsCredentialsCopyCreateCreated

NewCredentialsCredentialsCopyCreateCreated creates a CredentialsCredentialsCopyCreateCreated with default headers values

func (*CredentialsCredentialsCopyCreateCreated) Error

type CredentialsCredentialsCopyCreateParams

type CredentialsCredentialsCopyCreateParams struct {

	/*Data*/
	Data CredentialsCredentialsCopyCreateBody
	/*ID*/
	ID string

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

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

func NewCredentialsCredentialsCopyCreateParams

func NewCredentialsCredentialsCopyCreateParams() *CredentialsCredentialsCopyCreateParams

NewCredentialsCredentialsCopyCreateParams creates a new CredentialsCredentialsCopyCreateParams object with the default values initialized.

func NewCredentialsCredentialsCopyCreateParamsWithContext

func NewCredentialsCredentialsCopyCreateParamsWithContext(ctx context.Context) *CredentialsCredentialsCopyCreateParams

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

func NewCredentialsCredentialsCopyCreateParamsWithHTTPClient

func NewCredentialsCredentialsCopyCreateParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsCopyCreateParams

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

func NewCredentialsCredentialsCopyCreateParamsWithTimeout

func NewCredentialsCredentialsCopyCreateParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsCopyCreateParams

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

func (*CredentialsCredentialsCopyCreateParams) SetContext

SetContext adds the context to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) SetData

SetData adds the data to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) SetID

SetID adds the id to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) WithContext

WithContext adds the context to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) WithData

WithData adds the data to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) WithID

WithID adds the id to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials copy create params

func (*CredentialsCredentialsCopyCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsCopyCreateReader

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

CredentialsCredentialsCopyCreateReader is a Reader for the CredentialsCredentialsCopyCreate structure.

func (*CredentialsCredentialsCopyCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsCopyListOK

type CredentialsCredentialsCopyListOK struct {
}

CredentialsCredentialsCopyListOK handles this case with default header values.

OK

func NewCredentialsCredentialsCopyListOK

func NewCredentialsCredentialsCopyListOK() *CredentialsCredentialsCopyListOK

NewCredentialsCredentialsCopyListOK creates a CredentialsCredentialsCopyListOK with default headers values

func (*CredentialsCredentialsCopyListOK) Error

type CredentialsCredentialsCopyListParams

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

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

func NewCredentialsCredentialsCopyListParams

func NewCredentialsCredentialsCopyListParams() *CredentialsCredentialsCopyListParams

NewCredentialsCredentialsCopyListParams creates a new CredentialsCredentialsCopyListParams object with the default values initialized.

func NewCredentialsCredentialsCopyListParamsWithContext

func NewCredentialsCredentialsCopyListParamsWithContext(ctx context.Context) *CredentialsCredentialsCopyListParams

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

func NewCredentialsCredentialsCopyListParamsWithHTTPClient

func NewCredentialsCredentialsCopyListParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsCopyListParams

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

func NewCredentialsCredentialsCopyListParamsWithTimeout

func NewCredentialsCredentialsCopyListParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsCopyListParams

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

func (*CredentialsCredentialsCopyListParams) SetContext

SetContext adds the context to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) SetID

SetID adds the id to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) SetPage

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

SetPage adds the page to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) SetPageSize

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

SetPageSize adds the pageSize to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) SetSearch

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

SetSearch adds the search to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) WithContext

WithContext adds the context to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) WithID

WithID adds the id to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) WithPage

WithPage adds the page to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) WithPageSize

WithPageSize adds the pageSize to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) WithSearch

WithSearch adds the search to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials copy list params

func (*CredentialsCredentialsCopyListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsCopyListReader

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

CredentialsCredentialsCopyListReader is a Reader for the CredentialsCredentialsCopyList structure.

func (*CredentialsCredentialsCopyListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsCreateBadRequest

type CredentialsCredentialsCreateBadRequest struct {
}

CredentialsCredentialsCreateBadRequest handles this case with default header values.

Bad Request

func NewCredentialsCredentialsCreateBadRequest

func NewCredentialsCredentialsCreateBadRequest() *CredentialsCredentialsCreateBadRequest

NewCredentialsCredentialsCreateBadRequest creates a CredentialsCredentialsCreateBadRequest with default headers values

func (*CredentialsCredentialsCreateBadRequest) Error

type CredentialsCredentialsCreateCreated

type CredentialsCredentialsCreateCreated struct {
}

CredentialsCredentialsCreateCreated handles this case with default header values.

CredentialsCredentialsCreateCreated credentials credentials create created

func NewCredentialsCredentialsCreateCreated

func NewCredentialsCredentialsCreateCreated() *CredentialsCredentialsCreateCreated

NewCredentialsCredentialsCreateCreated creates a CredentialsCredentialsCreateCreated with default headers values

func (*CredentialsCredentialsCreateCreated) Error

type CredentialsCredentialsCreateForbidden

type CredentialsCredentialsCreateForbidden struct {
}

CredentialsCredentialsCreateForbidden handles this case with default header values.

No Permission Response

func NewCredentialsCredentialsCreateForbidden

func NewCredentialsCredentialsCreateForbidden() *CredentialsCredentialsCreateForbidden

NewCredentialsCredentialsCreateForbidden creates a CredentialsCredentialsCreateForbidden with default headers values

func (*CredentialsCredentialsCreateForbidden) Error

type CredentialsCredentialsCreateParams

type CredentialsCredentialsCreateParams struct {

	/*Data*/
	Data interface{}

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

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

func NewCredentialsCredentialsCreateParams

func NewCredentialsCredentialsCreateParams() *CredentialsCredentialsCreateParams

NewCredentialsCredentialsCreateParams creates a new CredentialsCredentialsCreateParams object with the default values initialized.

func NewCredentialsCredentialsCreateParamsWithContext

func NewCredentialsCredentialsCreateParamsWithContext(ctx context.Context) *CredentialsCredentialsCreateParams

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

func NewCredentialsCredentialsCreateParamsWithHTTPClient

func NewCredentialsCredentialsCreateParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsCreateParams

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

func NewCredentialsCredentialsCreateParamsWithTimeout

func NewCredentialsCredentialsCreateParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsCreateParams

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

func (*CredentialsCredentialsCreateParams) SetContext

SetContext adds the context to the credentials credentials create params

func (*CredentialsCredentialsCreateParams) SetData

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

SetData adds the data to the credentials credentials create params

func (*CredentialsCredentialsCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials create params

func (*CredentialsCredentialsCreateParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials create params

func (*CredentialsCredentialsCreateParams) WithContext

WithContext adds the context to the credentials credentials create params

func (*CredentialsCredentialsCreateParams) WithData

WithData adds the data to the credentials credentials create params

func (*CredentialsCredentialsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials create params

func (*CredentialsCredentialsCreateParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials create params

func (*CredentialsCredentialsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsCreateReader

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

CredentialsCredentialsCreateReader is a Reader for the CredentialsCredentialsCreate structure.

func (*CredentialsCredentialsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsDeleteNoContent

type CredentialsCredentialsDeleteNoContent struct {
}

CredentialsCredentialsDeleteNoContent handles this case with default header values.

CredentialsCredentialsDeleteNoContent credentials credentials delete no content

func NewCredentialsCredentialsDeleteNoContent

func NewCredentialsCredentialsDeleteNoContent() *CredentialsCredentialsDeleteNoContent

NewCredentialsCredentialsDeleteNoContent creates a CredentialsCredentialsDeleteNoContent with default headers values

func (*CredentialsCredentialsDeleteNoContent) Error

type CredentialsCredentialsDeleteParams

type CredentialsCredentialsDeleteParams struct {

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

	*/
	Search *string

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

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

func NewCredentialsCredentialsDeleteParams

func NewCredentialsCredentialsDeleteParams() *CredentialsCredentialsDeleteParams

NewCredentialsCredentialsDeleteParams creates a new CredentialsCredentialsDeleteParams object with the default values initialized.

func NewCredentialsCredentialsDeleteParamsWithContext

func NewCredentialsCredentialsDeleteParamsWithContext(ctx context.Context) *CredentialsCredentialsDeleteParams

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

func NewCredentialsCredentialsDeleteParamsWithHTTPClient

func NewCredentialsCredentialsDeleteParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsDeleteParams

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

func NewCredentialsCredentialsDeleteParamsWithTimeout

func NewCredentialsCredentialsDeleteParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsDeleteParams

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

func (*CredentialsCredentialsDeleteParams) SetContext

SetContext adds the context to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) SetID

SetID adds the id to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) SetSearch

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

SetSearch adds the search to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) WithContext

WithContext adds the context to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) WithID

WithID adds the id to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) WithSearch

WithSearch adds the search to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials delete params

func (*CredentialsCredentialsDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsDeleteReader

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

CredentialsCredentialsDeleteReader is a Reader for the CredentialsCredentialsDelete structure.

func (*CredentialsCredentialsDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsInputSourcesCreateCreated

type CredentialsCredentialsInputSourcesCreateCreated struct {
}

CredentialsCredentialsInputSourcesCreateCreated handles this case with default header values.

CredentialsCredentialsInputSourcesCreateCreated credentials credentials input sources create created

func NewCredentialsCredentialsInputSourcesCreateCreated

func NewCredentialsCredentialsInputSourcesCreateCreated() *CredentialsCredentialsInputSourcesCreateCreated

NewCredentialsCredentialsInputSourcesCreateCreated creates a CredentialsCredentialsInputSourcesCreateCreated with default headers values

func (*CredentialsCredentialsInputSourcesCreateCreated) Error

type CredentialsCredentialsInputSourcesCreateParams

type CredentialsCredentialsInputSourcesCreateParams struct {

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

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

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

func NewCredentialsCredentialsInputSourcesCreateParams

func NewCredentialsCredentialsInputSourcesCreateParams() *CredentialsCredentialsInputSourcesCreateParams

NewCredentialsCredentialsInputSourcesCreateParams creates a new CredentialsCredentialsInputSourcesCreateParams object with the default values initialized.

func NewCredentialsCredentialsInputSourcesCreateParamsWithContext

func NewCredentialsCredentialsInputSourcesCreateParamsWithContext(ctx context.Context) *CredentialsCredentialsInputSourcesCreateParams

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

func NewCredentialsCredentialsInputSourcesCreateParamsWithHTTPClient

func NewCredentialsCredentialsInputSourcesCreateParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsInputSourcesCreateParams

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

func NewCredentialsCredentialsInputSourcesCreateParamsWithTimeout

func NewCredentialsCredentialsInputSourcesCreateParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsInputSourcesCreateParams

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

func (*CredentialsCredentialsInputSourcesCreateParams) SetContext

SetContext adds the context to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) SetData

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

SetData adds the data to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) SetID

SetID adds the id to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) SetTimeout

SetTimeout adds the timeout to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) WithContext

WithContext adds the context to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) WithData

WithData adds the data to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) WithID

WithID adds the id to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials input sources create params

func (*CredentialsCredentialsInputSourcesCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsInputSourcesCreateReader

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

CredentialsCredentialsInputSourcesCreateReader is a Reader for the CredentialsCredentialsInputSourcesCreate structure.

func (*CredentialsCredentialsInputSourcesCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsInputSourcesListOK

type CredentialsCredentialsInputSourcesListOK struct {
}

CredentialsCredentialsInputSourcesListOK handles this case with default header values.

OK

func NewCredentialsCredentialsInputSourcesListOK

func NewCredentialsCredentialsInputSourcesListOK() *CredentialsCredentialsInputSourcesListOK

NewCredentialsCredentialsInputSourcesListOK creates a CredentialsCredentialsInputSourcesListOK with default headers values

func (*CredentialsCredentialsInputSourcesListOK) Error

type CredentialsCredentialsInputSourcesListParams

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

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

func NewCredentialsCredentialsInputSourcesListParams

func NewCredentialsCredentialsInputSourcesListParams() *CredentialsCredentialsInputSourcesListParams

NewCredentialsCredentialsInputSourcesListParams creates a new CredentialsCredentialsInputSourcesListParams object with the default values initialized.

func NewCredentialsCredentialsInputSourcesListParamsWithContext

func NewCredentialsCredentialsInputSourcesListParamsWithContext(ctx context.Context) *CredentialsCredentialsInputSourcesListParams

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

func NewCredentialsCredentialsInputSourcesListParamsWithHTTPClient

func NewCredentialsCredentialsInputSourcesListParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsInputSourcesListParams

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

func NewCredentialsCredentialsInputSourcesListParamsWithTimeout

func NewCredentialsCredentialsInputSourcesListParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsInputSourcesListParams

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

func (*CredentialsCredentialsInputSourcesListParams) SetContext

SetContext adds the context to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) SetID

SetID adds the id to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) SetPage

SetPage adds the page to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) SetPageSize

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

SetPageSize adds the pageSize to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) SetSearch

SetSearch adds the search to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) SetTimeout

SetTimeout adds the timeout to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) WithContext

WithContext adds the context to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) WithID

WithID adds the id to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) WithPage

WithPage adds the page to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) WithPageSize

WithPageSize adds the pageSize to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) WithSearch

WithSearch adds the search to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials input sources list params

func (*CredentialsCredentialsInputSourcesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsInputSourcesListReader

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

CredentialsCredentialsInputSourcesListReader is a Reader for the CredentialsCredentialsInputSourcesList structure.

func (*CredentialsCredentialsInputSourcesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsListBadRequest

type CredentialsCredentialsListBadRequest struct {
}

CredentialsCredentialsListBadRequest handles this case with default header values.

Bad Request

func NewCredentialsCredentialsListBadRequest

func NewCredentialsCredentialsListBadRequest() *CredentialsCredentialsListBadRequest

NewCredentialsCredentialsListBadRequest creates a CredentialsCredentialsListBadRequest with default headers values

func (*CredentialsCredentialsListBadRequest) Error

type CredentialsCredentialsListOK

type CredentialsCredentialsListOK struct {
}

CredentialsCredentialsListOK handles this case with default header values.

OK

func NewCredentialsCredentialsListOK

func NewCredentialsCredentialsListOK() *CredentialsCredentialsListOK

NewCredentialsCredentialsListOK creates a CredentialsCredentialsListOK with default headers values

func (*CredentialsCredentialsListOK) Error

type CredentialsCredentialsListParams

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

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

func NewCredentialsCredentialsListParams

func NewCredentialsCredentialsListParams() *CredentialsCredentialsListParams

NewCredentialsCredentialsListParams creates a new CredentialsCredentialsListParams object with the default values initialized.

func NewCredentialsCredentialsListParamsWithContext

func NewCredentialsCredentialsListParamsWithContext(ctx context.Context) *CredentialsCredentialsListParams

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

func NewCredentialsCredentialsListParamsWithHTTPClient

func NewCredentialsCredentialsListParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsListParams

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

func NewCredentialsCredentialsListParamsWithTimeout

func NewCredentialsCredentialsListParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsListParams

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

func (*CredentialsCredentialsListParams) SetContext

SetContext adds the context to the credentials credentials list params

func (*CredentialsCredentialsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials list params

func (*CredentialsCredentialsListParams) SetPage

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

SetPage adds the page to the credentials credentials list params

func (*CredentialsCredentialsListParams) SetPageSize

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

SetPageSize adds the pageSize to the credentials credentials list params

func (*CredentialsCredentialsListParams) SetSearch

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

SetSearch adds the search to the credentials credentials list params

func (*CredentialsCredentialsListParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials list params

func (*CredentialsCredentialsListParams) WithContext

WithContext adds the context to the credentials credentials list params

func (*CredentialsCredentialsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials list params

func (*CredentialsCredentialsListParams) WithPage

WithPage adds the page to the credentials credentials list params

func (*CredentialsCredentialsListParams) WithPageSize

WithPageSize adds the pageSize to the credentials credentials list params

func (*CredentialsCredentialsListParams) WithSearch

WithSearch adds the search to the credentials credentials list params

func (*CredentialsCredentialsListParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials list params

func (*CredentialsCredentialsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsListReader

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

CredentialsCredentialsListReader is a Reader for the CredentialsCredentialsList structure.

func (*CredentialsCredentialsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsObjectRolesListOK

type CredentialsCredentialsObjectRolesListOK struct {
}

CredentialsCredentialsObjectRolesListOK handles this case with default header values.

OK

func NewCredentialsCredentialsObjectRolesListOK

func NewCredentialsCredentialsObjectRolesListOK() *CredentialsCredentialsObjectRolesListOK

NewCredentialsCredentialsObjectRolesListOK creates a CredentialsCredentialsObjectRolesListOK with default headers values

func (*CredentialsCredentialsObjectRolesListOK) Error

type CredentialsCredentialsObjectRolesListParams

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

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

func NewCredentialsCredentialsObjectRolesListParams

func NewCredentialsCredentialsObjectRolesListParams() *CredentialsCredentialsObjectRolesListParams

NewCredentialsCredentialsObjectRolesListParams creates a new CredentialsCredentialsObjectRolesListParams object with the default values initialized.

func NewCredentialsCredentialsObjectRolesListParamsWithContext

func NewCredentialsCredentialsObjectRolesListParamsWithContext(ctx context.Context) *CredentialsCredentialsObjectRolesListParams

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

func NewCredentialsCredentialsObjectRolesListParamsWithHTTPClient

func NewCredentialsCredentialsObjectRolesListParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsObjectRolesListParams

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

func NewCredentialsCredentialsObjectRolesListParamsWithTimeout

func NewCredentialsCredentialsObjectRolesListParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsObjectRolesListParams

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

func (*CredentialsCredentialsObjectRolesListParams) SetContext

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

func (*CredentialsCredentialsObjectRolesListParams) SetHTTPClient

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

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

func (*CredentialsCredentialsObjectRolesListParams) SetID

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

func (*CredentialsCredentialsObjectRolesListParams) SetPage

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

func (*CredentialsCredentialsObjectRolesListParams) SetPageSize

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

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

func (*CredentialsCredentialsObjectRolesListParams) SetSearch

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

func (*CredentialsCredentialsObjectRolesListParams) SetTimeout

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

func (*CredentialsCredentialsObjectRolesListParams) WithContext

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

func (*CredentialsCredentialsObjectRolesListParams) WithHTTPClient

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

func (*CredentialsCredentialsObjectRolesListParams) WithID

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

func (*CredentialsCredentialsObjectRolesListParams) WithPage

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

func (*CredentialsCredentialsObjectRolesListParams) WithPageSize

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

func (*CredentialsCredentialsObjectRolesListParams) WithSearch

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

func (*CredentialsCredentialsObjectRolesListParams) WithTimeout

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

func (*CredentialsCredentialsObjectRolesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsObjectRolesListReader

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

CredentialsCredentialsObjectRolesListReader is a Reader for the CredentialsCredentialsObjectRolesList structure.

func (*CredentialsCredentialsObjectRolesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsOwnerTeamsListOK

type CredentialsCredentialsOwnerTeamsListOK struct {
}

CredentialsCredentialsOwnerTeamsListOK handles this case with default header values.

OK

func NewCredentialsCredentialsOwnerTeamsListOK

func NewCredentialsCredentialsOwnerTeamsListOK() *CredentialsCredentialsOwnerTeamsListOK

NewCredentialsCredentialsOwnerTeamsListOK creates a CredentialsCredentialsOwnerTeamsListOK with default headers values

func (*CredentialsCredentialsOwnerTeamsListOK) Error

type CredentialsCredentialsOwnerTeamsListParams

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

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

func NewCredentialsCredentialsOwnerTeamsListParams

func NewCredentialsCredentialsOwnerTeamsListParams() *CredentialsCredentialsOwnerTeamsListParams

NewCredentialsCredentialsOwnerTeamsListParams creates a new CredentialsCredentialsOwnerTeamsListParams object with the default values initialized.

func NewCredentialsCredentialsOwnerTeamsListParamsWithContext

func NewCredentialsCredentialsOwnerTeamsListParamsWithContext(ctx context.Context) *CredentialsCredentialsOwnerTeamsListParams

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

func NewCredentialsCredentialsOwnerTeamsListParamsWithHTTPClient

func NewCredentialsCredentialsOwnerTeamsListParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsOwnerTeamsListParams

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

func NewCredentialsCredentialsOwnerTeamsListParamsWithTimeout

func NewCredentialsCredentialsOwnerTeamsListParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsOwnerTeamsListParams

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

func (*CredentialsCredentialsOwnerTeamsListParams) SetContext

SetContext adds the context to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) SetID

SetID adds the id to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) SetPage

SetPage adds the page to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) SetPageSize

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

SetPageSize adds the pageSize to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) SetSearch

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

SetSearch adds the search to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) SetTimeout

SetTimeout adds the timeout to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) WithContext

WithContext adds the context to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) WithID

WithID adds the id to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) WithPage

WithPage adds the page to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) WithPageSize

WithPageSize adds the pageSize to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) WithSearch

WithSearch adds the search to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials owner teams list params

func (*CredentialsCredentialsOwnerTeamsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsOwnerTeamsListReader

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

CredentialsCredentialsOwnerTeamsListReader is a Reader for the CredentialsCredentialsOwnerTeamsList structure.

func (*CredentialsCredentialsOwnerTeamsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsOwnerUsersListOK

type CredentialsCredentialsOwnerUsersListOK struct {
}

CredentialsCredentialsOwnerUsersListOK handles this case with default header values.

OK

func NewCredentialsCredentialsOwnerUsersListOK

func NewCredentialsCredentialsOwnerUsersListOK() *CredentialsCredentialsOwnerUsersListOK

NewCredentialsCredentialsOwnerUsersListOK creates a CredentialsCredentialsOwnerUsersListOK with default headers values

func (*CredentialsCredentialsOwnerUsersListOK) Error

type CredentialsCredentialsOwnerUsersListParams

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

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

func NewCredentialsCredentialsOwnerUsersListParams

func NewCredentialsCredentialsOwnerUsersListParams() *CredentialsCredentialsOwnerUsersListParams

NewCredentialsCredentialsOwnerUsersListParams creates a new CredentialsCredentialsOwnerUsersListParams object with the default values initialized.

func NewCredentialsCredentialsOwnerUsersListParamsWithContext

func NewCredentialsCredentialsOwnerUsersListParamsWithContext(ctx context.Context) *CredentialsCredentialsOwnerUsersListParams

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

func NewCredentialsCredentialsOwnerUsersListParamsWithHTTPClient

func NewCredentialsCredentialsOwnerUsersListParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsOwnerUsersListParams

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

func NewCredentialsCredentialsOwnerUsersListParamsWithTimeout

func NewCredentialsCredentialsOwnerUsersListParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsOwnerUsersListParams

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

func (*CredentialsCredentialsOwnerUsersListParams) SetContext

SetContext adds the context to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) SetID

SetID adds the id to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) SetPage

SetPage adds the page to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) SetPageSize

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

SetPageSize adds the pageSize to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) SetSearch

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

SetSearch adds the search to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) SetTimeout

SetTimeout adds the timeout to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) WithContext

WithContext adds the context to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) WithID

WithID adds the id to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) WithPage

WithPage adds the page to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) WithPageSize

WithPageSize adds the pageSize to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) WithSearch

WithSearch adds the search to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials owner users list params

func (*CredentialsCredentialsOwnerUsersListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsOwnerUsersListReader

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

CredentialsCredentialsOwnerUsersListReader is a Reader for the CredentialsCredentialsOwnerUsersList structure.

func (*CredentialsCredentialsOwnerUsersListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsPartialUpdateBadRequest

type CredentialsCredentialsPartialUpdateBadRequest struct {
}

CredentialsCredentialsPartialUpdateBadRequest handles this case with default header values.

Bad Request

func NewCredentialsCredentialsPartialUpdateBadRequest

func NewCredentialsCredentialsPartialUpdateBadRequest() *CredentialsCredentialsPartialUpdateBadRequest

NewCredentialsCredentialsPartialUpdateBadRequest creates a CredentialsCredentialsPartialUpdateBadRequest with default headers values

func (*CredentialsCredentialsPartialUpdateBadRequest) Error

type CredentialsCredentialsPartialUpdateOK

type CredentialsCredentialsPartialUpdateOK struct {
}

CredentialsCredentialsPartialUpdateOK handles this case with default header values.

OK

func NewCredentialsCredentialsPartialUpdateOK

func NewCredentialsCredentialsPartialUpdateOK() *CredentialsCredentialsPartialUpdateOK

NewCredentialsCredentialsPartialUpdateOK creates a CredentialsCredentialsPartialUpdateOK with default headers values

func (*CredentialsCredentialsPartialUpdateOK) Error

type CredentialsCredentialsPartialUpdateParams

type CredentialsCredentialsPartialUpdateParams struct {

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

	*/
	Search *string

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

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

func NewCredentialsCredentialsPartialUpdateParams

func NewCredentialsCredentialsPartialUpdateParams() *CredentialsCredentialsPartialUpdateParams

NewCredentialsCredentialsPartialUpdateParams creates a new CredentialsCredentialsPartialUpdateParams object with the default values initialized.

func NewCredentialsCredentialsPartialUpdateParamsWithContext

func NewCredentialsCredentialsPartialUpdateParamsWithContext(ctx context.Context) *CredentialsCredentialsPartialUpdateParams

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

func NewCredentialsCredentialsPartialUpdateParamsWithHTTPClient

func NewCredentialsCredentialsPartialUpdateParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsPartialUpdateParams

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

func NewCredentialsCredentialsPartialUpdateParamsWithTimeout

func NewCredentialsCredentialsPartialUpdateParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsPartialUpdateParams

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

func (*CredentialsCredentialsPartialUpdateParams) SetContext

SetContext adds the context to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) SetData

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

SetData adds the data to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) SetID

SetID adds the id to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) SetSearch

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

SetSearch adds the search to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) SetTimeout

SetTimeout adds the timeout to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) WithContext

WithContext adds the context to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) WithData

WithData adds the data to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) WithID

WithID adds the id to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) WithSearch

WithSearch adds the search to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials partial update params

func (*CredentialsCredentialsPartialUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsPartialUpdateReader

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

CredentialsCredentialsPartialUpdateReader is a Reader for the CredentialsCredentialsPartialUpdate structure.

func (*CredentialsCredentialsPartialUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsReadOK

type CredentialsCredentialsReadOK struct {
}

CredentialsCredentialsReadOK handles this case with default header values.

OK

func NewCredentialsCredentialsReadOK

func NewCredentialsCredentialsReadOK() *CredentialsCredentialsReadOK

NewCredentialsCredentialsReadOK creates a CredentialsCredentialsReadOK with default headers values

func (*CredentialsCredentialsReadOK) Error

type CredentialsCredentialsReadParams

type CredentialsCredentialsReadParams struct {

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

	*/
	Search *string

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

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

func NewCredentialsCredentialsReadParams

func NewCredentialsCredentialsReadParams() *CredentialsCredentialsReadParams

NewCredentialsCredentialsReadParams creates a new CredentialsCredentialsReadParams object with the default values initialized.

func NewCredentialsCredentialsReadParamsWithContext

func NewCredentialsCredentialsReadParamsWithContext(ctx context.Context) *CredentialsCredentialsReadParams

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

func NewCredentialsCredentialsReadParamsWithHTTPClient

func NewCredentialsCredentialsReadParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsReadParams

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

func NewCredentialsCredentialsReadParamsWithTimeout

func NewCredentialsCredentialsReadParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsReadParams

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

func (*CredentialsCredentialsReadParams) SetContext

SetContext adds the context to the credentials credentials read params

func (*CredentialsCredentialsReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials read params

func (*CredentialsCredentialsReadParams) SetID

SetID adds the id to the credentials credentials read params

func (*CredentialsCredentialsReadParams) SetSearch

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

SetSearch adds the search to the credentials credentials read params

func (*CredentialsCredentialsReadParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials read params

func (*CredentialsCredentialsReadParams) WithContext

WithContext adds the context to the credentials credentials read params

func (*CredentialsCredentialsReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials read params

func (*CredentialsCredentialsReadParams) WithID

WithID adds the id to the credentials credentials read params

func (*CredentialsCredentialsReadParams) WithSearch

WithSearch adds the search to the credentials credentials read params

func (*CredentialsCredentialsReadParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials read params

func (*CredentialsCredentialsReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsReadReader

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

CredentialsCredentialsReadReader is a Reader for the CredentialsCredentialsRead structure.

func (*CredentialsCredentialsReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsTestCreateAccepted

type CredentialsCredentialsTestCreateAccepted struct {
}

CredentialsCredentialsTestCreateAccepted handles this case with default header values.

Accepted

func NewCredentialsCredentialsTestCreateAccepted

func NewCredentialsCredentialsTestCreateAccepted() *CredentialsCredentialsTestCreateAccepted

NewCredentialsCredentialsTestCreateAccepted creates a CredentialsCredentialsTestCreateAccepted with default headers values

func (*CredentialsCredentialsTestCreateAccepted) Error

type CredentialsCredentialsTestCreateCreated

type CredentialsCredentialsTestCreateCreated struct {
}

CredentialsCredentialsTestCreateCreated handles this case with default header values.

CredentialsCredentialsTestCreateCreated credentials credentials test create created

func NewCredentialsCredentialsTestCreateCreated

func NewCredentialsCredentialsTestCreateCreated() *CredentialsCredentialsTestCreateCreated

NewCredentialsCredentialsTestCreateCreated creates a CredentialsCredentialsTestCreateCreated with default headers values

func (*CredentialsCredentialsTestCreateCreated) Error

type CredentialsCredentialsTestCreateForbidden

type CredentialsCredentialsTestCreateForbidden struct {
}

CredentialsCredentialsTestCreateForbidden handles this case with default header values.

No Permission Response

func NewCredentialsCredentialsTestCreateForbidden

func NewCredentialsCredentialsTestCreateForbidden() *CredentialsCredentialsTestCreateForbidden

NewCredentialsCredentialsTestCreateForbidden creates a CredentialsCredentialsTestCreateForbidden with default headers values

func (*CredentialsCredentialsTestCreateForbidden) Error

type CredentialsCredentialsTestCreateParams

type CredentialsCredentialsTestCreateParams struct {

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

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

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

func NewCredentialsCredentialsTestCreateParams

func NewCredentialsCredentialsTestCreateParams() *CredentialsCredentialsTestCreateParams

NewCredentialsCredentialsTestCreateParams creates a new CredentialsCredentialsTestCreateParams object with the default values initialized.

func NewCredentialsCredentialsTestCreateParamsWithContext

func NewCredentialsCredentialsTestCreateParamsWithContext(ctx context.Context) *CredentialsCredentialsTestCreateParams

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

func NewCredentialsCredentialsTestCreateParamsWithHTTPClient

func NewCredentialsCredentialsTestCreateParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsTestCreateParams

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

func NewCredentialsCredentialsTestCreateParamsWithTimeout

func NewCredentialsCredentialsTestCreateParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsTestCreateParams

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

func (*CredentialsCredentialsTestCreateParams) SetContext

SetContext adds the context to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) SetData

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

SetData adds the data to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) SetID

SetID adds the id to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) WithContext

WithContext adds the context to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) WithData

WithData adds the data to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) WithID

WithID adds the id to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials test create params

func (*CredentialsCredentialsTestCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsTestCreateReader

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

CredentialsCredentialsTestCreateReader is a Reader for the CredentialsCredentialsTestCreate structure.

func (*CredentialsCredentialsTestCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsTestReadOK

type CredentialsCredentialsTestReadOK struct {
}

CredentialsCredentialsTestReadOK handles this case with default header values.

OK

func NewCredentialsCredentialsTestReadOK

func NewCredentialsCredentialsTestReadOK() *CredentialsCredentialsTestReadOK

NewCredentialsCredentialsTestReadOK creates a CredentialsCredentialsTestReadOK with default headers values

func (*CredentialsCredentialsTestReadOK) Error

type CredentialsCredentialsTestReadParams

type CredentialsCredentialsTestReadParams struct {

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

	*/
	Search *string

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

CredentialsCredentialsTestReadParams contains all the parameters to send to the API endpoint for the credentials credentials test read operation typically these are written to a http.Request

func NewCredentialsCredentialsTestReadParams

func NewCredentialsCredentialsTestReadParams() *CredentialsCredentialsTestReadParams

NewCredentialsCredentialsTestReadParams creates a new CredentialsCredentialsTestReadParams object with the default values initialized.

func NewCredentialsCredentialsTestReadParamsWithContext

func NewCredentialsCredentialsTestReadParamsWithContext(ctx context.Context) *CredentialsCredentialsTestReadParams

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

func NewCredentialsCredentialsTestReadParamsWithHTTPClient

func NewCredentialsCredentialsTestReadParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsTestReadParams

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

func NewCredentialsCredentialsTestReadParamsWithTimeout

func NewCredentialsCredentialsTestReadParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsTestReadParams

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

func (*CredentialsCredentialsTestReadParams) SetContext

SetContext adds the context to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) SetID

SetID adds the id to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) SetSearch

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

SetSearch adds the search to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) WithContext

WithContext adds the context to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) WithID

WithID adds the id to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) WithSearch

WithSearch adds the search to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials test read params

func (*CredentialsCredentialsTestReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsTestReadReader

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

CredentialsCredentialsTestReadReader is a Reader for the CredentialsCredentialsTestRead structure.

func (*CredentialsCredentialsTestReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CredentialsCredentialsUpdateBadRequest

type CredentialsCredentialsUpdateBadRequest struct {
}

CredentialsCredentialsUpdateBadRequest handles this case with default header values.

Bad Request

func NewCredentialsCredentialsUpdateBadRequest

func NewCredentialsCredentialsUpdateBadRequest() *CredentialsCredentialsUpdateBadRequest

NewCredentialsCredentialsUpdateBadRequest creates a CredentialsCredentialsUpdateBadRequest with default headers values

func (*CredentialsCredentialsUpdateBadRequest) Error

type CredentialsCredentialsUpdateOK

type CredentialsCredentialsUpdateOK struct {
}

CredentialsCredentialsUpdateOK handles this case with default header values.

OK

func NewCredentialsCredentialsUpdateOK

func NewCredentialsCredentialsUpdateOK() *CredentialsCredentialsUpdateOK

NewCredentialsCredentialsUpdateOK creates a CredentialsCredentialsUpdateOK with default headers values

func (*CredentialsCredentialsUpdateOK) Error

type CredentialsCredentialsUpdateParams

type CredentialsCredentialsUpdateParams struct {

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

	*/
	Search *string

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

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

func NewCredentialsCredentialsUpdateParams

func NewCredentialsCredentialsUpdateParams() *CredentialsCredentialsUpdateParams

NewCredentialsCredentialsUpdateParams creates a new CredentialsCredentialsUpdateParams object with the default values initialized.

func NewCredentialsCredentialsUpdateParamsWithContext

func NewCredentialsCredentialsUpdateParamsWithContext(ctx context.Context) *CredentialsCredentialsUpdateParams

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

func NewCredentialsCredentialsUpdateParamsWithHTTPClient

func NewCredentialsCredentialsUpdateParamsWithHTTPClient(client *http.Client) *CredentialsCredentialsUpdateParams

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

func NewCredentialsCredentialsUpdateParamsWithTimeout

func NewCredentialsCredentialsUpdateParamsWithTimeout(timeout time.Duration) *CredentialsCredentialsUpdateParams

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

func (*CredentialsCredentialsUpdateParams) SetContext

SetContext adds the context to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) SetData

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

SetData adds the data to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) SetID

SetID adds the id to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) SetSearch

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

SetSearch adds the search to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) WithContext

WithContext adds the context to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) WithData

WithData adds the data to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) WithID

WithID adds the id to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) WithSearch

WithSearch adds the search to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) WithTimeout

WithTimeout adds the timeout to the credentials credentials update params

func (*CredentialsCredentialsUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CredentialsCredentialsUpdateReader

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

CredentialsCredentialsUpdateReader is a Reader for the CredentialsCredentialsUpdate structure.

func (*CredentialsCredentialsUpdateReader) ReadResponse

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