secrets

package
v0.2.11 Latest Latest
Warning

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

Go to latest
Published: Sep 6, 2021 License: Apache-2.0 Imports: 13 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 secrets API

func (*Client) SecretsGenerateRsaKeyPairList

func (a *Client) SecretsGenerateRsaKeyPairList(params *SecretsGenerateRsaKeyPairListParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsGenerateRsaKeyPairListOK, error)

SecretsGenerateRsaKeyPairList this endpoint can be used to generate a new r s a key pair the keys are returned in p e m format

{
      "public_key": "<public key>",
      "private_key": "<private key>"
  }

func (*Client) SecretsGetSessionKeyCreate

func (a *Client) SecretsGetSessionKeyCreate(params *SecretsGetSessionKeyCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsGetSessionKeyCreateCreated, error)
SecretsGetSessionKeyCreate Retrieve a temporary session key to use for encrypting and decrypting secrets via the API. The user's private RSA

key is POSTed with the name `private_key`. An example:

curl -v -X POST -H "Authorization: Token <token>" -H "Accept: application/json; indent=4" \
--data-urlencode "private_key@<filename>" https://netbox/api/secrets/get-session-key/

This request will yield a base64-encoded session key to be included in an `X-Session-Key` header in future requests:

{
    "session_key": "+8t4SI6XikgVmB5+/urhozx9O5qCQANyOk1MNe6taRf="
}

This endpoint accepts one optional parameter: `preserve_key`. If True and a session key exists, the existing session key will be returned instead of a new one.

func (*Client) SecretsSecretRolesBulkDelete

SecretsSecretRolesBulkDelete secrets secret roles bulk delete API

func (*Client) SecretsSecretRolesBulkPartialUpdate

func (a *Client) SecretsSecretRolesBulkPartialUpdate(params *SecretsSecretRolesBulkPartialUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesBulkPartialUpdateOK, error)

SecretsSecretRolesBulkPartialUpdate secrets secret roles bulk partial update API

func (*Client) SecretsSecretRolesBulkUpdate

func (a *Client) SecretsSecretRolesBulkUpdate(params *SecretsSecretRolesBulkUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesBulkUpdateOK, error)

SecretsSecretRolesBulkUpdate secrets secret roles bulk update API

func (*Client) SecretsSecretRolesCreate

func (a *Client) SecretsSecretRolesCreate(params *SecretsSecretRolesCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesCreateCreated, error)

SecretsSecretRolesCreate secrets secret roles create API

func (*Client) SecretsSecretRolesDelete

SecretsSecretRolesDelete secrets secret roles delete API

func (*Client) SecretsSecretRolesList

func (a *Client) SecretsSecretRolesList(params *SecretsSecretRolesListParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesListOK, error)

SecretsSecretRolesList secrets secret roles list API

func (*Client) SecretsSecretRolesPartialUpdate

func (a *Client) SecretsSecretRolesPartialUpdate(params *SecretsSecretRolesPartialUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesPartialUpdateOK, error)

SecretsSecretRolesPartialUpdate secrets secret roles partial update API

func (*Client) SecretsSecretRolesRead

func (a *Client) SecretsSecretRolesRead(params *SecretsSecretRolesReadParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesReadOK, error)

SecretsSecretRolesRead secrets secret roles read API

func (*Client) SecretsSecretRolesUpdate

func (a *Client) SecretsSecretRolesUpdate(params *SecretsSecretRolesUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesUpdateOK, error)

SecretsSecretRolesUpdate secrets secret roles update API

func (*Client) SecretsSecretsBulkDelete

SecretsSecretsBulkDelete secrets secrets bulk delete API

func (*Client) SecretsSecretsBulkPartialUpdate

func (a *Client) SecretsSecretsBulkPartialUpdate(params *SecretsSecretsBulkPartialUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsBulkPartialUpdateOK, error)

SecretsSecretsBulkPartialUpdate secrets secrets bulk partial update API

func (*Client) SecretsSecretsBulkUpdate

func (a *Client) SecretsSecretsBulkUpdate(params *SecretsSecretsBulkUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsBulkUpdateOK, error)

SecretsSecretsBulkUpdate secrets secrets bulk update API

func (*Client) SecretsSecretsCreate

func (a *Client) SecretsSecretsCreate(params *SecretsSecretsCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsCreateCreated, error)

SecretsSecretsCreate secrets secrets create API

func (*Client) SecretsSecretsDelete

func (a *Client) SecretsSecretsDelete(params *SecretsSecretsDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsDeleteNoContent, error)

SecretsSecretsDelete secrets secrets delete API

func (*Client) SecretsSecretsList

func (a *Client) SecretsSecretsList(params *SecretsSecretsListParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsListOK, error)

SecretsSecretsList secrets secrets list API

func (*Client) SecretsSecretsPartialUpdate

func (a *Client) SecretsSecretsPartialUpdate(params *SecretsSecretsPartialUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsPartialUpdateOK, error)

SecretsSecretsPartialUpdate secrets secrets partial update API

func (*Client) SecretsSecretsRead

func (a *Client) SecretsSecretsRead(params *SecretsSecretsReadParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsReadOK, error)

SecretsSecretsRead secrets secrets read API

func (*Client) SecretsSecretsUpdate

func (a *Client) SecretsSecretsUpdate(params *SecretsSecretsUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsUpdateOK, error)

SecretsSecretsUpdate secrets secrets update API

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	SecretsGenerateRsaKeyPairList(params *SecretsGenerateRsaKeyPairListParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsGenerateRsaKeyPairListOK, error)

	SecretsGetSessionKeyCreate(params *SecretsGetSessionKeyCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsGetSessionKeyCreateCreated, error)

	SecretsSecretRolesBulkDelete(params *SecretsSecretRolesBulkDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesBulkDeleteNoContent, error)

	SecretsSecretRolesBulkPartialUpdate(params *SecretsSecretRolesBulkPartialUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesBulkPartialUpdateOK, error)

	SecretsSecretRolesBulkUpdate(params *SecretsSecretRolesBulkUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesBulkUpdateOK, error)

	SecretsSecretRolesCreate(params *SecretsSecretRolesCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesCreateCreated, error)

	SecretsSecretRolesDelete(params *SecretsSecretRolesDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesDeleteNoContent, error)

	SecretsSecretRolesList(params *SecretsSecretRolesListParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesListOK, error)

	SecretsSecretRolesPartialUpdate(params *SecretsSecretRolesPartialUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesPartialUpdateOK, error)

	SecretsSecretRolesRead(params *SecretsSecretRolesReadParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesReadOK, error)

	SecretsSecretRolesUpdate(params *SecretsSecretRolesUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretRolesUpdateOK, error)

	SecretsSecretsBulkDelete(params *SecretsSecretsBulkDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsBulkDeleteNoContent, error)

	SecretsSecretsBulkPartialUpdate(params *SecretsSecretsBulkPartialUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsBulkPartialUpdateOK, error)

	SecretsSecretsBulkUpdate(params *SecretsSecretsBulkUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsBulkUpdateOK, error)

	SecretsSecretsCreate(params *SecretsSecretsCreateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsCreateCreated, error)

	SecretsSecretsDelete(params *SecretsSecretsDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsDeleteNoContent, error)

	SecretsSecretsList(params *SecretsSecretsListParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsListOK, error)

	SecretsSecretsPartialUpdate(params *SecretsSecretsPartialUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsPartialUpdateOK, error)

	SecretsSecretsRead(params *SecretsSecretsReadParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsReadOK, error)

	SecretsSecretsUpdate(params *SecretsSecretsUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SecretsSecretsUpdateOK, 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 secrets API client.

type SecretsGenerateRsaKeyPairListOK

type SecretsGenerateRsaKeyPairListOK struct {
}
SecretsGenerateRsaKeyPairListOK describes a response with status code 200, with default header values.

SecretsGenerateRsaKeyPairListOK secrets generate rsa key pair list o k

func NewSecretsGenerateRsaKeyPairListOK

func NewSecretsGenerateRsaKeyPairListOK() *SecretsGenerateRsaKeyPairListOK

NewSecretsGenerateRsaKeyPairListOK creates a SecretsGenerateRsaKeyPairListOK with default headers values

func (*SecretsGenerateRsaKeyPairListOK) Error

type SecretsGenerateRsaKeyPairListParams

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

SecretsGenerateRsaKeyPairListParams contains all the parameters to send to the API endpoint

for the secrets generate rsa key pair list operation.

Typically these are written to a http.Request.

func NewSecretsGenerateRsaKeyPairListParams

func NewSecretsGenerateRsaKeyPairListParams() *SecretsGenerateRsaKeyPairListParams

NewSecretsGenerateRsaKeyPairListParams creates a new SecretsGenerateRsaKeyPairListParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsGenerateRsaKeyPairListParamsWithContext

func NewSecretsGenerateRsaKeyPairListParamsWithContext(ctx context.Context) *SecretsGenerateRsaKeyPairListParams

NewSecretsGenerateRsaKeyPairListParamsWithContext creates a new SecretsGenerateRsaKeyPairListParams object with the ability to set a context for a request.

func NewSecretsGenerateRsaKeyPairListParamsWithHTTPClient

func NewSecretsGenerateRsaKeyPairListParamsWithHTTPClient(client *http.Client) *SecretsGenerateRsaKeyPairListParams

NewSecretsGenerateRsaKeyPairListParamsWithHTTPClient creates a new SecretsGenerateRsaKeyPairListParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsGenerateRsaKeyPairListParamsWithTimeout

func NewSecretsGenerateRsaKeyPairListParamsWithTimeout(timeout time.Duration) *SecretsGenerateRsaKeyPairListParams

NewSecretsGenerateRsaKeyPairListParamsWithTimeout creates a new SecretsGenerateRsaKeyPairListParams object with the ability to set a timeout on a request.

func (*SecretsGenerateRsaKeyPairListParams) SetContext

SetContext adds the context to the secrets generate rsa key pair list params

func (*SecretsGenerateRsaKeyPairListParams) SetDefaults

func (o *SecretsGenerateRsaKeyPairListParams) SetDefaults()

SetDefaults hydrates default values in the secrets generate rsa key pair list params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsGenerateRsaKeyPairListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets generate rsa key pair list params

func (*SecretsGenerateRsaKeyPairListParams) SetTimeout

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

SetTimeout adds the timeout to the secrets generate rsa key pair list params

func (*SecretsGenerateRsaKeyPairListParams) WithContext

WithContext adds the context to the secrets generate rsa key pair list params

func (*SecretsGenerateRsaKeyPairListParams) WithDefaults

WithDefaults hydrates default values in the secrets generate rsa key pair list params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsGenerateRsaKeyPairListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets generate rsa key pair list params

func (*SecretsGenerateRsaKeyPairListParams) WithTimeout

WithTimeout adds the timeout to the secrets generate rsa key pair list params

func (*SecretsGenerateRsaKeyPairListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsGenerateRsaKeyPairListReader

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

SecretsGenerateRsaKeyPairListReader is a Reader for the SecretsGenerateRsaKeyPairList structure.

func (*SecretsGenerateRsaKeyPairListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsGetSessionKeyCreateCreated

type SecretsGetSessionKeyCreateCreated struct {
}
SecretsGetSessionKeyCreateCreated describes a response with status code 201, with default header values.

SecretsGetSessionKeyCreateCreated secrets get session key create created

func NewSecretsGetSessionKeyCreateCreated

func NewSecretsGetSessionKeyCreateCreated() *SecretsGetSessionKeyCreateCreated

NewSecretsGetSessionKeyCreateCreated creates a SecretsGetSessionKeyCreateCreated with default headers values

func (*SecretsGetSessionKeyCreateCreated) Error

type SecretsGetSessionKeyCreateParams

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

SecretsGetSessionKeyCreateParams contains all the parameters to send to the API endpoint

for the secrets get session key create operation.

Typically these are written to a http.Request.

func NewSecretsGetSessionKeyCreateParams

func NewSecretsGetSessionKeyCreateParams() *SecretsGetSessionKeyCreateParams

NewSecretsGetSessionKeyCreateParams creates a new SecretsGetSessionKeyCreateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsGetSessionKeyCreateParamsWithContext

func NewSecretsGetSessionKeyCreateParamsWithContext(ctx context.Context) *SecretsGetSessionKeyCreateParams

NewSecretsGetSessionKeyCreateParamsWithContext creates a new SecretsGetSessionKeyCreateParams object with the ability to set a context for a request.

func NewSecretsGetSessionKeyCreateParamsWithHTTPClient

func NewSecretsGetSessionKeyCreateParamsWithHTTPClient(client *http.Client) *SecretsGetSessionKeyCreateParams

NewSecretsGetSessionKeyCreateParamsWithHTTPClient creates a new SecretsGetSessionKeyCreateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsGetSessionKeyCreateParamsWithTimeout

func NewSecretsGetSessionKeyCreateParamsWithTimeout(timeout time.Duration) *SecretsGetSessionKeyCreateParams

NewSecretsGetSessionKeyCreateParamsWithTimeout creates a new SecretsGetSessionKeyCreateParams object with the ability to set a timeout on a request.

func (*SecretsGetSessionKeyCreateParams) SetContext

SetContext adds the context to the secrets get session key create params

func (*SecretsGetSessionKeyCreateParams) SetDefaults

func (o *SecretsGetSessionKeyCreateParams) SetDefaults()

SetDefaults hydrates default values in the secrets get session key create params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsGetSessionKeyCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets get session key create params

func (*SecretsGetSessionKeyCreateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets get session key create params

func (*SecretsGetSessionKeyCreateParams) WithContext

WithContext adds the context to the secrets get session key create params

func (*SecretsGetSessionKeyCreateParams) WithDefaults

WithDefaults hydrates default values in the secrets get session key create params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsGetSessionKeyCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets get session key create params

func (*SecretsGetSessionKeyCreateParams) WithTimeout

WithTimeout adds the timeout to the secrets get session key create params

func (*SecretsGetSessionKeyCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsGetSessionKeyCreateReader

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

SecretsGetSessionKeyCreateReader is a Reader for the SecretsGetSessionKeyCreate structure.

func (*SecretsGetSessionKeyCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesBulkDeleteNoContent

type SecretsSecretRolesBulkDeleteNoContent struct {
}
SecretsSecretRolesBulkDeleteNoContent describes a response with status code 204, with default header values.

SecretsSecretRolesBulkDeleteNoContent secrets secret roles bulk delete no content

func NewSecretsSecretRolesBulkDeleteNoContent

func NewSecretsSecretRolesBulkDeleteNoContent() *SecretsSecretRolesBulkDeleteNoContent

NewSecretsSecretRolesBulkDeleteNoContent creates a SecretsSecretRolesBulkDeleteNoContent with default headers values

func (*SecretsSecretRolesBulkDeleteNoContent) Error

type SecretsSecretRolesBulkDeleteParams

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

SecretsSecretRolesBulkDeleteParams contains all the parameters to send to the API endpoint

for the secrets secret roles bulk delete operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesBulkDeleteParams

func NewSecretsSecretRolesBulkDeleteParams() *SecretsSecretRolesBulkDeleteParams

NewSecretsSecretRolesBulkDeleteParams creates a new SecretsSecretRolesBulkDeleteParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesBulkDeleteParamsWithContext

func NewSecretsSecretRolesBulkDeleteParamsWithContext(ctx context.Context) *SecretsSecretRolesBulkDeleteParams

NewSecretsSecretRolesBulkDeleteParamsWithContext creates a new SecretsSecretRolesBulkDeleteParams object with the ability to set a context for a request.

func NewSecretsSecretRolesBulkDeleteParamsWithHTTPClient

func NewSecretsSecretRolesBulkDeleteParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesBulkDeleteParams

NewSecretsSecretRolesBulkDeleteParamsWithHTTPClient creates a new SecretsSecretRolesBulkDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesBulkDeleteParamsWithTimeout

func NewSecretsSecretRolesBulkDeleteParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesBulkDeleteParams

NewSecretsSecretRolesBulkDeleteParamsWithTimeout creates a new SecretsSecretRolesBulkDeleteParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesBulkDeleteParams) SetContext

SetContext adds the context to the secrets secret roles bulk delete params

func (*SecretsSecretRolesBulkDeleteParams) SetDefaults

func (o *SecretsSecretRolesBulkDeleteParams) SetDefaults()

SetDefaults hydrates default values in the secrets secret roles bulk delete params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesBulkDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles bulk delete params

func (*SecretsSecretRolesBulkDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secret roles bulk delete params

func (*SecretsSecretRolesBulkDeleteParams) WithContext

WithContext adds the context to the secrets secret roles bulk delete params

func (*SecretsSecretRolesBulkDeleteParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles bulk delete params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesBulkDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles bulk delete params

func (*SecretsSecretRolesBulkDeleteParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles bulk delete params

func (*SecretsSecretRolesBulkDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesBulkDeleteReader

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

SecretsSecretRolesBulkDeleteReader is a Reader for the SecretsSecretRolesBulkDelete structure.

func (*SecretsSecretRolesBulkDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesBulkPartialUpdateOK

type SecretsSecretRolesBulkPartialUpdateOK struct {
	Payload *models.SecretRole
}
SecretsSecretRolesBulkPartialUpdateOK describes a response with status code 200, with default header values.

SecretsSecretRolesBulkPartialUpdateOK secrets secret roles bulk partial update o k

func NewSecretsSecretRolesBulkPartialUpdateOK

func NewSecretsSecretRolesBulkPartialUpdateOK() *SecretsSecretRolesBulkPartialUpdateOK

NewSecretsSecretRolesBulkPartialUpdateOK creates a SecretsSecretRolesBulkPartialUpdateOK with default headers values

func (*SecretsSecretRolesBulkPartialUpdateOK) Error

func (*SecretsSecretRolesBulkPartialUpdateOK) GetPayload

type SecretsSecretRolesBulkPartialUpdateParams

type SecretsSecretRolesBulkPartialUpdateParams struct {

	// Data.
	Data *models.SecretRole

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

SecretsSecretRolesBulkPartialUpdateParams contains all the parameters to send to the API endpoint

for the secrets secret roles bulk partial update operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesBulkPartialUpdateParams

func NewSecretsSecretRolesBulkPartialUpdateParams() *SecretsSecretRolesBulkPartialUpdateParams

NewSecretsSecretRolesBulkPartialUpdateParams creates a new SecretsSecretRolesBulkPartialUpdateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesBulkPartialUpdateParamsWithContext

func NewSecretsSecretRolesBulkPartialUpdateParamsWithContext(ctx context.Context) *SecretsSecretRolesBulkPartialUpdateParams

NewSecretsSecretRolesBulkPartialUpdateParamsWithContext creates a new SecretsSecretRolesBulkPartialUpdateParams object with the ability to set a context for a request.

func NewSecretsSecretRolesBulkPartialUpdateParamsWithHTTPClient

func NewSecretsSecretRolesBulkPartialUpdateParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesBulkPartialUpdateParams

NewSecretsSecretRolesBulkPartialUpdateParamsWithHTTPClient creates a new SecretsSecretRolesBulkPartialUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesBulkPartialUpdateParamsWithTimeout

func NewSecretsSecretRolesBulkPartialUpdateParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesBulkPartialUpdateParams

NewSecretsSecretRolesBulkPartialUpdateParamsWithTimeout creates a new SecretsSecretRolesBulkPartialUpdateParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesBulkPartialUpdateParams) SetContext

SetContext adds the context to the secrets secret roles bulk partial update params

func (*SecretsSecretRolesBulkPartialUpdateParams) SetData

SetData adds the data to the secrets secret roles bulk partial update params

func (*SecretsSecretRolesBulkPartialUpdateParams) SetDefaults

SetDefaults hydrates default values in the secrets secret roles bulk partial update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesBulkPartialUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles bulk partial update params

func (*SecretsSecretRolesBulkPartialUpdateParams) SetTimeout

SetTimeout adds the timeout to the secrets secret roles bulk partial update params

func (*SecretsSecretRolesBulkPartialUpdateParams) WithContext

WithContext adds the context to the secrets secret roles bulk partial update params

func (*SecretsSecretRolesBulkPartialUpdateParams) WithData

WithData adds the data to the secrets secret roles bulk partial update params

func (*SecretsSecretRolesBulkPartialUpdateParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles bulk partial update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesBulkPartialUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles bulk partial update params

func (*SecretsSecretRolesBulkPartialUpdateParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles bulk partial update params

func (*SecretsSecretRolesBulkPartialUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesBulkPartialUpdateReader

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

SecretsSecretRolesBulkPartialUpdateReader is a Reader for the SecretsSecretRolesBulkPartialUpdate structure.

func (*SecretsSecretRolesBulkPartialUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesBulkUpdateOK

type SecretsSecretRolesBulkUpdateOK struct {
	Payload *models.SecretRole
}
SecretsSecretRolesBulkUpdateOK describes a response with status code 200, with default header values.

SecretsSecretRolesBulkUpdateOK secrets secret roles bulk update o k

func NewSecretsSecretRolesBulkUpdateOK

func NewSecretsSecretRolesBulkUpdateOK() *SecretsSecretRolesBulkUpdateOK

NewSecretsSecretRolesBulkUpdateOK creates a SecretsSecretRolesBulkUpdateOK with default headers values

func (*SecretsSecretRolesBulkUpdateOK) Error

func (*SecretsSecretRolesBulkUpdateOK) GetPayload

type SecretsSecretRolesBulkUpdateParams

type SecretsSecretRolesBulkUpdateParams struct {

	// Data.
	Data *models.SecretRole

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

SecretsSecretRolesBulkUpdateParams contains all the parameters to send to the API endpoint

for the secrets secret roles bulk update operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesBulkUpdateParams

func NewSecretsSecretRolesBulkUpdateParams() *SecretsSecretRolesBulkUpdateParams

NewSecretsSecretRolesBulkUpdateParams creates a new SecretsSecretRolesBulkUpdateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesBulkUpdateParamsWithContext

func NewSecretsSecretRolesBulkUpdateParamsWithContext(ctx context.Context) *SecretsSecretRolesBulkUpdateParams

NewSecretsSecretRolesBulkUpdateParamsWithContext creates a new SecretsSecretRolesBulkUpdateParams object with the ability to set a context for a request.

func NewSecretsSecretRolesBulkUpdateParamsWithHTTPClient

func NewSecretsSecretRolesBulkUpdateParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesBulkUpdateParams

NewSecretsSecretRolesBulkUpdateParamsWithHTTPClient creates a new SecretsSecretRolesBulkUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesBulkUpdateParamsWithTimeout

func NewSecretsSecretRolesBulkUpdateParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesBulkUpdateParams

NewSecretsSecretRolesBulkUpdateParamsWithTimeout creates a new SecretsSecretRolesBulkUpdateParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesBulkUpdateParams) SetContext

SetContext adds the context to the secrets secret roles bulk update params

func (*SecretsSecretRolesBulkUpdateParams) SetData

SetData adds the data to the secrets secret roles bulk update params

func (*SecretsSecretRolesBulkUpdateParams) SetDefaults

func (o *SecretsSecretRolesBulkUpdateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secret roles bulk update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesBulkUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles bulk update params

func (*SecretsSecretRolesBulkUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secret roles bulk update params

func (*SecretsSecretRolesBulkUpdateParams) WithContext

WithContext adds the context to the secrets secret roles bulk update params

func (*SecretsSecretRolesBulkUpdateParams) WithData

WithData adds the data to the secrets secret roles bulk update params

func (*SecretsSecretRolesBulkUpdateParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles bulk update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesBulkUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles bulk update params

func (*SecretsSecretRolesBulkUpdateParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles bulk update params

func (*SecretsSecretRolesBulkUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesBulkUpdateReader

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

SecretsSecretRolesBulkUpdateReader is a Reader for the SecretsSecretRolesBulkUpdate structure.

func (*SecretsSecretRolesBulkUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesCreateCreated

type SecretsSecretRolesCreateCreated struct {
	Payload *models.SecretRole
}
SecretsSecretRolesCreateCreated describes a response with status code 201, with default header values.

SecretsSecretRolesCreateCreated secrets secret roles create created

func NewSecretsSecretRolesCreateCreated

func NewSecretsSecretRolesCreateCreated() *SecretsSecretRolesCreateCreated

NewSecretsSecretRolesCreateCreated creates a SecretsSecretRolesCreateCreated with default headers values

func (*SecretsSecretRolesCreateCreated) Error

func (*SecretsSecretRolesCreateCreated) GetPayload

type SecretsSecretRolesCreateParams

type SecretsSecretRolesCreateParams struct {

	// Data.
	Data *models.SecretRole

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

SecretsSecretRolesCreateParams contains all the parameters to send to the API endpoint

for the secrets secret roles create operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesCreateParams

func NewSecretsSecretRolesCreateParams() *SecretsSecretRolesCreateParams

NewSecretsSecretRolesCreateParams creates a new SecretsSecretRolesCreateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesCreateParamsWithContext

func NewSecretsSecretRolesCreateParamsWithContext(ctx context.Context) *SecretsSecretRolesCreateParams

NewSecretsSecretRolesCreateParamsWithContext creates a new SecretsSecretRolesCreateParams object with the ability to set a context for a request.

func NewSecretsSecretRolesCreateParamsWithHTTPClient

func NewSecretsSecretRolesCreateParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesCreateParams

NewSecretsSecretRolesCreateParamsWithHTTPClient creates a new SecretsSecretRolesCreateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesCreateParamsWithTimeout

func NewSecretsSecretRolesCreateParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesCreateParams

NewSecretsSecretRolesCreateParamsWithTimeout creates a new SecretsSecretRolesCreateParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesCreateParams) SetContext

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

SetContext adds the context to the secrets secret roles create params

func (*SecretsSecretRolesCreateParams) SetData

SetData adds the data to the secrets secret roles create params

func (*SecretsSecretRolesCreateParams) SetDefaults

func (o *SecretsSecretRolesCreateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secret roles create params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles create params

func (*SecretsSecretRolesCreateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secret roles create params

func (*SecretsSecretRolesCreateParams) WithContext

WithContext adds the context to the secrets secret roles create params

func (*SecretsSecretRolesCreateParams) WithData

WithData adds the data to the secrets secret roles create params

func (*SecretsSecretRolesCreateParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles create params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles create params

func (*SecretsSecretRolesCreateParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles create params

func (*SecretsSecretRolesCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesCreateReader

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

SecretsSecretRolesCreateReader is a Reader for the SecretsSecretRolesCreate structure.

func (*SecretsSecretRolesCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesDeleteNoContent

type SecretsSecretRolesDeleteNoContent struct {
}
SecretsSecretRolesDeleteNoContent describes a response with status code 204, with default header values.

SecretsSecretRolesDeleteNoContent secrets secret roles delete no content

func NewSecretsSecretRolesDeleteNoContent

func NewSecretsSecretRolesDeleteNoContent() *SecretsSecretRolesDeleteNoContent

NewSecretsSecretRolesDeleteNoContent creates a SecretsSecretRolesDeleteNoContent with default headers values

func (*SecretsSecretRolesDeleteNoContent) Error

type SecretsSecretRolesDeleteParams

type SecretsSecretRolesDeleteParams struct {

	/* ID.

	   A unique integer value identifying this secret role.
	*/
	ID int64

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

SecretsSecretRolesDeleteParams contains all the parameters to send to the API endpoint

for the secrets secret roles delete operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesDeleteParams

func NewSecretsSecretRolesDeleteParams() *SecretsSecretRolesDeleteParams

NewSecretsSecretRolesDeleteParams creates a new SecretsSecretRolesDeleteParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesDeleteParamsWithContext

func NewSecretsSecretRolesDeleteParamsWithContext(ctx context.Context) *SecretsSecretRolesDeleteParams

NewSecretsSecretRolesDeleteParamsWithContext creates a new SecretsSecretRolesDeleteParams object with the ability to set a context for a request.

func NewSecretsSecretRolesDeleteParamsWithHTTPClient

func NewSecretsSecretRolesDeleteParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesDeleteParams

NewSecretsSecretRolesDeleteParamsWithHTTPClient creates a new SecretsSecretRolesDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesDeleteParamsWithTimeout

func NewSecretsSecretRolesDeleteParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesDeleteParams

NewSecretsSecretRolesDeleteParamsWithTimeout creates a new SecretsSecretRolesDeleteParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesDeleteParams) SetContext

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

SetContext adds the context to the secrets secret roles delete params

func (*SecretsSecretRolesDeleteParams) SetDefaults

func (o *SecretsSecretRolesDeleteParams) SetDefaults()

SetDefaults hydrates default values in the secrets secret roles delete params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles delete params

func (*SecretsSecretRolesDeleteParams) SetID

SetID adds the id to the secrets secret roles delete params

func (*SecretsSecretRolesDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secret roles delete params

func (*SecretsSecretRolesDeleteParams) WithContext

WithContext adds the context to the secrets secret roles delete params

func (*SecretsSecretRolesDeleteParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles delete params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles delete params

func (*SecretsSecretRolesDeleteParams) WithID

WithID adds the id to the secrets secret roles delete params

func (*SecretsSecretRolesDeleteParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles delete params

func (*SecretsSecretRolesDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesDeleteReader

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

SecretsSecretRolesDeleteReader is a Reader for the SecretsSecretRolesDelete structure.

func (*SecretsSecretRolesDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesListOK

type SecretsSecretRolesListOK struct {
	Payload *SecretsSecretRolesListOKBody
}
SecretsSecretRolesListOK describes a response with status code 200, with default header values.

SecretsSecretRolesListOK secrets secret roles list o k

func NewSecretsSecretRolesListOK

func NewSecretsSecretRolesListOK() *SecretsSecretRolesListOK

NewSecretsSecretRolesListOK creates a SecretsSecretRolesListOK with default headers values

func (*SecretsSecretRolesListOK) Error

func (o *SecretsSecretRolesListOK) Error() string

func (*SecretsSecretRolesListOK) GetPayload

type SecretsSecretRolesListOKBody

type SecretsSecretRolesListOKBody struct {

	// count
	// Required: true
	Count *int64 `json:"count"`

	// next
	// Format: uri
	Next *strfmt.URI `json:"next,omitempty"`

	// previous
	// Format: uri
	Previous *strfmt.URI `json:"previous,omitempty"`

	// results
	// Required: true
	Results []*models.SecretRole `json:"results"`
}

SecretsSecretRolesListOKBody secrets secret roles list o k body swagger:model SecretsSecretRolesListOKBody

func (*SecretsSecretRolesListOKBody) ContextValidate

func (o *SecretsSecretRolesListOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this secrets secret roles list o k body based on the context it is used

func (*SecretsSecretRolesListOKBody) MarshalBinary

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

MarshalBinary interface implementation

func (*SecretsSecretRolesListOKBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*SecretsSecretRolesListOKBody) Validate

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

Validate validates this secrets secret roles list o k body

type SecretsSecretRolesListParams

type SecretsSecretRolesListParams struct {

	// Created.
	Created *string

	// CreatedGte.
	CreatedGte *string

	// CreatedLte.
	CreatedLte *string

	// ID.
	ID *string

	// IDGt.
	IDGt *string

	// IDGte.
	IDGte *string

	// IDLt.
	IDLt *string

	// IDLte.
	IDLte *string

	// IDn.
	IDn *string

	// LastUpdated.
	LastUpdated *string

	// LastUpdatedGte.
	LastUpdatedGte *string

	// LastUpdatedLte.
	LastUpdatedLte *string

	/* Limit.

	   Number of results to return per page.
	*/
	Limit *int64

	// Name.
	Name *string

	// NameEmpty.
	NameEmpty *string

	// NameIc.
	NameIc *string

	// NameIe.
	NameIe *string

	// NameIew.
	NameIew *string

	// NameIsw.
	NameIsw *string

	// Namen.
	Namen *string

	// NameNic.
	NameNic *string

	// NameNie.
	NameNie *string

	// NameNiew.
	NameNiew *string

	// NameNisw.
	NameNisw *string

	/* Offset.

	   The initial index from which to return the results.
	*/
	Offset *int64

	// Q.
	Q *string

	// Slug.
	Slug *string

	// SlugEmpty.
	SlugEmpty *string

	// SlugIc.
	SlugIc *string

	// SlugIe.
	SlugIe *string

	// SlugIew.
	SlugIew *string

	// SlugIsw.
	SlugIsw *string

	// Slugn.
	Slugn *string

	// SlugNic.
	SlugNic *string

	// SlugNie.
	SlugNie *string

	// SlugNiew.
	SlugNiew *string

	// SlugNisw.
	SlugNisw *string

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

SecretsSecretRolesListParams contains all the parameters to send to the API endpoint

for the secrets secret roles list operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesListParams

func NewSecretsSecretRolesListParams() *SecretsSecretRolesListParams

NewSecretsSecretRolesListParams creates a new SecretsSecretRolesListParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesListParamsWithContext

func NewSecretsSecretRolesListParamsWithContext(ctx context.Context) *SecretsSecretRolesListParams

NewSecretsSecretRolesListParamsWithContext creates a new SecretsSecretRolesListParams object with the ability to set a context for a request.

func NewSecretsSecretRolesListParamsWithHTTPClient

func NewSecretsSecretRolesListParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesListParams

NewSecretsSecretRolesListParamsWithHTTPClient creates a new SecretsSecretRolesListParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesListParamsWithTimeout

func NewSecretsSecretRolesListParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesListParams

NewSecretsSecretRolesListParamsWithTimeout creates a new SecretsSecretRolesListParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesListParams) SetContext

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

SetContext adds the context to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetCreated

func (o *SecretsSecretRolesListParams) SetCreated(created *string)

SetCreated adds the created to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetCreatedGte

func (o *SecretsSecretRolesListParams) SetCreatedGte(createdGte *string)

SetCreatedGte adds the createdGte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetCreatedLte

func (o *SecretsSecretRolesListParams) SetCreatedLte(createdLte *string)

SetCreatedLte adds the createdLte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetDefaults

func (o *SecretsSecretRolesListParams) SetDefaults()

SetDefaults hydrates default values in the secrets secret roles list params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetID

func (o *SecretsSecretRolesListParams) SetID(id *string)

SetID adds the id to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetIDGt

func (o *SecretsSecretRolesListParams) SetIDGt(iDGt *string)

SetIDGt adds the idGt to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetIDGte

func (o *SecretsSecretRolesListParams) SetIDGte(iDGte *string)

SetIDGte adds the idGte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetIDLt

func (o *SecretsSecretRolesListParams) SetIDLt(iDLt *string)

SetIDLt adds the idLt to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetIDLte

func (o *SecretsSecretRolesListParams) SetIDLte(iDLte *string)

SetIDLte adds the idLte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetIDn

func (o *SecretsSecretRolesListParams) SetIDn(iDn *string)

SetIDn adds the idN to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetLastUpdated

func (o *SecretsSecretRolesListParams) SetLastUpdated(lastUpdated *string)

SetLastUpdated adds the lastUpdated to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetLastUpdatedGte

func (o *SecretsSecretRolesListParams) SetLastUpdatedGte(lastUpdatedGte *string)

SetLastUpdatedGte adds the lastUpdatedGte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetLastUpdatedLte

func (o *SecretsSecretRolesListParams) SetLastUpdatedLte(lastUpdatedLte *string)

SetLastUpdatedLte adds the lastUpdatedLte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetLimit

func (o *SecretsSecretRolesListParams) SetLimit(limit *int64)

SetLimit adds the limit to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetName

func (o *SecretsSecretRolesListParams) SetName(name *string)

SetName adds the name to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameEmpty

func (o *SecretsSecretRolesListParams) SetNameEmpty(nameEmpty *string)

SetNameEmpty adds the nameEmpty to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameIc

func (o *SecretsSecretRolesListParams) SetNameIc(nameIc *string)

SetNameIc adds the nameIc to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameIe

func (o *SecretsSecretRolesListParams) SetNameIe(nameIe *string)

SetNameIe adds the nameIe to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameIew

func (o *SecretsSecretRolesListParams) SetNameIew(nameIew *string)

SetNameIew adds the nameIew to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameIsw

func (o *SecretsSecretRolesListParams) SetNameIsw(nameIsw *string)

SetNameIsw adds the nameIsw to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameNic

func (o *SecretsSecretRolesListParams) SetNameNic(nameNic *string)

SetNameNic adds the nameNic to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameNie

func (o *SecretsSecretRolesListParams) SetNameNie(nameNie *string)

SetNameNie adds the nameNie to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameNiew

func (o *SecretsSecretRolesListParams) SetNameNiew(nameNiew *string)

SetNameNiew adds the nameNiew to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNameNisw

func (o *SecretsSecretRolesListParams) SetNameNisw(nameNisw *string)

SetNameNisw adds the nameNisw to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetNamen

func (o *SecretsSecretRolesListParams) SetNamen(namen *string)

SetNamen adds the nameN to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetOffset

func (o *SecretsSecretRolesListParams) SetOffset(offset *int64)

SetOffset adds the offset to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetQ

SetQ adds the q to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlug

func (o *SecretsSecretRolesListParams) SetSlug(slug *string)

SetSlug adds the slug to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugEmpty

func (o *SecretsSecretRolesListParams) SetSlugEmpty(slugEmpty *string)

SetSlugEmpty adds the slugEmpty to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugIc

func (o *SecretsSecretRolesListParams) SetSlugIc(slugIc *string)

SetSlugIc adds the slugIc to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugIe

func (o *SecretsSecretRolesListParams) SetSlugIe(slugIe *string)

SetSlugIe adds the slugIe to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugIew

func (o *SecretsSecretRolesListParams) SetSlugIew(slugIew *string)

SetSlugIew adds the slugIew to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugIsw

func (o *SecretsSecretRolesListParams) SetSlugIsw(slugIsw *string)

SetSlugIsw adds the slugIsw to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugNic

func (o *SecretsSecretRolesListParams) SetSlugNic(slugNic *string)

SetSlugNic adds the slugNic to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugNie

func (o *SecretsSecretRolesListParams) SetSlugNie(slugNie *string)

SetSlugNie adds the slugNie to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugNiew

func (o *SecretsSecretRolesListParams) SetSlugNiew(slugNiew *string)

SetSlugNiew adds the slugNiew to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugNisw

func (o *SecretsSecretRolesListParams) SetSlugNisw(slugNisw *string)

SetSlugNisw adds the slugNisw to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetSlugn

func (o *SecretsSecretRolesListParams) SetSlugn(slugn *string)

SetSlugn adds the slugN to the secrets secret roles list params

func (*SecretsSecretRolesListParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithContext

WithContext adds the context to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithCreated

WithCreated adds the created to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithCreatedGte

func (o *SecretsSecretRolesListParams) WithCreatedGte(createdGte *string) *SecretsSecretRolesListParams

WithCreatedGte adds the createdGte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithCreatedLte

func (o *SecretsSecretRolesListParams) WithCreatedLte(createdLte *string) *SecretsSecretRolesListParams

WithCreatedLte adds the createdLte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles list params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesListParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithID

WithID adds the id to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithIDGt

WithIDGt adds the iDGt to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithIDGte

WithIDGte adds the iDGte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithIDLt

WithIDLt adds the iDLt to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithIDLte

WithIDLte adds the iDLte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithIDn

WithIDn adds the iDn to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithLastUpdated

func (o *SecretsSecretRolesListParams) WithLastUpdated(lastUpdated *string) *SecretsSecretRolesListParams

WithLastUpdated adds the lastUpdated to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithLastUpdatedGte

func (o *SecretsSecretRolesListParams) WithLastUpdatedGte(lastUpdatedGte *string) *SecretsSecretRolesListParams

WithLastUpdatedGte adds the lastUpdatedGte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithLastUpdatedLte

func (o *SecretsSecretRolesListParams) WithLastUpdatedLte(lastUpdatedLte *string) *SecretsSecretRolesListParams

WithLastUpdatedLte adds the lastUpdatedLte to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithLimit

WithLimit adds the limit to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithName

WithName adds the name to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameEmpty

WithNameEmpty adds the nameEmpty to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameIc

WithNameIc adds the nameIc to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameIe

WithNameIe adds the nameIe to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameIew

WithNameIew adds the nameIew to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameIsw

WithNameIsw adds the nameIsw to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameNic

WithNameNic adds the nameNic to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameNie

WithNameNie adds the nameNie to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameNiew

WithNameNiew adds the nameNiew to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNameNisw

WithNameNisw adds the nameNisw to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithNamen

WithNamen adds the namen to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithOffset

WithOffset adds the offset to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithQ

WithQ adds the q to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlug

WithSlug adds the slug to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugEmpty

WithSlugEmpty adds the slugEmpty to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugIc

WithSlugIc adds the slugIc to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugIe

WithSlugIe adds the slugIe to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugIew

WithSlugIew adds the slugIew to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugIsw

WithSlugIsw adds the slugIsw to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugNic

WithSlugNic adds the slugNic to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugNie

WithSlugNie adds the slugNie to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugNiew

WithSlugNiew adds the slugNiew to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugNisw

WithSlugNisw adds the slugNisw to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithSlugn

WithSlugn adds the slugn to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles list params

func (*SecretsSecretRolesListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesListReader

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

SecretsSecretRolesListReader is a Reader for the SecretsSecretRolesList structure.

func (*SecretsSecretRolesListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesPartialUpdateOK

type SecretsSecretRolesPartialUpdateOK struct {
	Payload *models.SecretRole
}
SecretsSecretRolesPartialUpdateOK describes a response with status code 200, with default header values.

SecretsSecretRolesPartialUpdateOK secrets secret roles partial update o k

func NewSecretsSecretRolesPartialUpdateOK

func NewSecretsSecretRolesPartialUpdateOK() *SecretsSecretRolesPartialUpdateOK

NewSecretsSecretRolesPartialUpdateOK creates a SecretsSecretRolesPartialUpdateOK with default headers values

func (*SecretsSecretRolesPartialUpdateOK) Error

func (*SecretsSecretRolesPartialUpdateOK) GetPayload

type SecretsSecretRolesPartialUpdateParams

type SecretsSecretRolesPartialUpdateParams struct {

	// Data.
	Data *models.SecretRole

	/* ID.

	   A unique integer value identifying this secret role.
	*/
	ID int64

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

SecretsSecretRolesPartialUpdateParams contains all the parameters to send to the API endpoint

for the secrets secret roles partial update operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesPartialUpdateParams

func NewSecretsSecretRolesPartialUpdateParams() *SecretsSecretRolesPartialUpdateParams

NewSecretsSecretRolesPartialUpdateParams creates a new SecretsSecretRolesPartialUpdateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesPartialUpdateParamsWithContext

func NewSecretsSecretRolesPartialUpdateParamsWithContext(ctx context.Context) *SecretsSecretRolesPartialUpdateParams

NewSecretsSecretRolesPartialUpdateParamsWithContext creates a new SecretsSecretRolesPartialUpdateParams object with the ability to set a context for a request.

func NewSecretsSecretRolesPartialUpdateParamsWithHTTPClient

func NewSecretsSecretRolesPartialUpdateParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesPartialUpdateParams

NewSecretsSecretRolesPartialUpdateParamsWithHTTPClient creates a new SecretsSecretRolesPartialUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesPartialUpdateParamsWithTimeout

func NewSecretsSecretRolesPartialUpdateParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesPartialUpdateParams

NewSecretsSecretRolesPartialUpdateParamsWithTimeout creates a new SecretsSecretRolesPartialUpdateParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesPartialUpdateParams) SetContext

SetContext adds the context to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) SetData

SetData adds the data to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) SetDefaults

func (o *SecretsSecretRolesPartialUpdateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secret roles partial update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesPartialUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) SetID

SetID adds the id to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) WithContext

WithContext adds the context to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) WithData

WithData adds the data to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles partial update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesPartialUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) WithID

WithID adds the id to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles partial update params

func (*SecretsSecretRolesPartialUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesPartialUpdateReader

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

SecretsSecretRolesPartialUpdateReader is a Reader for the SecretsSecretRolesPartialUpdate structure.

func (*SecretsSecretRolesPartialUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesReadOK

type SecretsSecretRolesReadOK struct {
	Payload *models.SecretRole
}
SecretsSecretRolesReadOK describes a response with status code 200, with default header values.

SecretsSecretRolesReadOK secrets secret roles read o k

func NewSecretsSecretRolesReadOK

func NewSecretsSecretRolesReadOK() *SecretsSecretRolesReadOK

NewSecretsSecretRolesReadOK creates a SecretsSecretRolesReadOK with default headers values

func (*SecretsSecretRolesReadOK) Error

func (o *SecretsSecretRolesReadOK) Error() string

func (*SecretsSecretRolesReadOK) GetPayload

func (o *SecretsSecretRolesReadOK) GetPayload() *models.SecretRole

type SecretsSecretRolesReadParams

type SecretsSecretRolesReadParams struct {

	/* ID.

	   A unique integer value identifying this secret role.
	*/
	ID int64

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

SecretsSecretRolesReadParams contains all the parameters to send to the API endpoint

for the secrets secret roles read operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesReadParams

func NewSecretsSecretRolesReadParams() *SecretsSecretRolesReadParams

NewSecretsSecretRolesReadParams creates a new SecretsSecretRolesReadParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesReadParamsWithContext

func NewSecretsSecretRolesReadParamsWithContext(ctx context.Context) *SecretsSecretRolesReadParams

NewSecretsSecretRolesReadParamsWithContext creates a new SecretsSecretRolesReadParams object with the ability to set a context for a request.

func NewSecretsSecretRolesReadParamsWithHTTPClient

func NewSecretsSecretRolesReadParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesReadParams

NewSecretsSecretRolesReadParamsWithHTTPClient creates a new SecretsSecretRolesReadParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesReadParamsWithTimeout

func NewSecretsSecretRolesReadParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesReadParams

NewSecretsSecretRolesReadParamsWithTimeout creates a new SecretsSecretRolesReadParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesReadParams) SetContext

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

SetContext adds the context to the secrets secret roles read params

func (*SecretsSecretRolesReadParams) SetDefaults

func (o *SecretsSecretRolesReadParams) SetDefaults()

SetDefaults hydrates default values in the secrets secret roles read params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles read params

func (*SecretsSecretRolesReadParams) SetID

func (o *SecretsSecretRolesReadParams) SetID(id int64)

SetID adds the id to the secrets secret roles read params

func (*SecretsSecretRolesReadParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secret roles read params

func (*SecretsSecretRolesReadParams) WithContext

WithContext adds the context to the secrets secret roles read params

func (*SecretsSecretRolesReadParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles read params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesReadParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles read params

func (*SecretsSecretRolesReadParams) WithID

WithID adds the id to the secrets secret roles read params

func (*SecretsSecretRolesReadParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles read params

func (*SecretsSecretRolesReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesReadReader

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

SecretsSecretRolesReadReader is a Reader for the SecretsSecretRolesRead structure.

func (*SecretsSecretRolesReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretRolesUpdateOK

type SecretsSecretRolesUpdateOK struct {
	Payload *models.SecretRole
}
SecretsSecretRolesUpdateOK describes a response with status code 200, with default header values.

SecretsSecretRolesUpdateOK secrets secret roles update o k

func NewSecretsSecretRolesUpdateOK

func NewSecretsSecretRolesUpdateOK() *SecretsSecretRolesUpdateOK

NewSecretsSecretRolesUpdateOK creates a SecretsSecretRolesUpdateOK with default headers values

func (*SecretsSecretRolesUpdateOK) Error

func (*SecretsSecretRolesUpdateOK) GetPayload

func (o *SecretsSecretRolesUpdateOK) GetPayload() *models.SecretRole

type SecretsSecretRolesUpdateParams

type SecretsSecretRolesUpdateParams struct {

	// Data.
	Data *models.SecretRole

	/* ID.

	   A unique integer value identifying this secret role.
	*/
	ID int64

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

SecretsSecretRolesUpdateParams contains all the parameters to send to the API endpoint

for the secrets secret roles update operation.

Typically these are written to a http.Request.

func NewSecretsSecretRolesUpdateParams

func NewSecretsSecretRolesUpdateParams() *SecretsSecretRolesUpdateParams

NewSecretsSecretRolesUpdateParams creates a new SecretsSecretRolesUpdateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretRolesUpdateParamsWithContext

func NewSecretsSecretRolesUpdateParamsWithContext(ctx context.Context) *SecretsSecretRolesUpdateParams

NewSecretsSecretRolesUpdateParamsWithContext creates a new SecretsSecretRolesUpdateParams object with the ability to set a context for a request.

func NewSecretsSecretRolesUpdateParamsWithHTTPClient

func NewSecretsSecretRolesUpdateParamsWithHTTPClient(client *http.Client) *SecretsSecretRolesUpdateParams

NewSecretsSecretRolesUpdateParamsWithHTTPClient creates a new SecretsSecretRolesUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretRolesUpdateParamsWithTimeout

func NewSecretsSecretRolesUpdateParamsWithTimeout(timeout time.Duration) *SecretsSecretRolesUpdateParams

NewSecretsSecretRolesUpdateParamsWithTimeout creates a new SecretsSecretRolesUpdateParams object with the ability to set a timeout on a request.

func (*SecretsSecretRolesUpdateParams) SetContext

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

SetContext adds the context to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) SetData

SetData adds the data to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) SetDefaults

func (o *SecretsSecretRolesUpdateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secret roles update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) SetID

SetID adds the id to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) WithContext

WithContext adds the context to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) WithData

WithData adds the data to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) WithDefaults

WithDefaults hydrates default values in the secrets secret roles update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretRolesUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) WithID

WithID adds the id to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) WithTimeout

WithTimeout adds the timeout to the secrets secret roles update params

func (*SecretsSecretRolesUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretRolesUpdateReader

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

SecretsSecretRolesUpdateReader is a Reader for the SecretsSecretRolesUpdate structure.

func (*SecretsSecretRolesUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsBulkDeleteNoContent

type SecretsSecretsBulkDeleteNoContent struct {
}
SecretsSecretsBulkDeleteNoContent describes a response with status code 204, with default header values.

SecretsSecretsBulkDeleteNoContent secrets secrets bulk delete no content

func NewSecretsSecretsBulkDeleteNoContent

func NewSecretsSecretsBulkDeleteNoContent() *SecretsSecretsBulkDeleteNoContent

NewSecretsSecretsBulkDeleteNoContent creates a SecretsSecretsBulkDeleteNoContent with default headers values

func (*SecretsSecretsBulkDeleteNoContent) Error

type SecretsSecretsBulkDeleteParams

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

SecretsSecretsBulkDeleteParams contains all the parameters to send to the API endpoint

for the secrets secrets bulk delete operation.

Typically these are written to a http.Request.

func NewSecretsSecretsBulkDeleteParams

func NewSecretsSecretsBulkDeleteParams() *SecretsSecretsBulkDeleteParams

NewSecretsSecretsBulkDeleteParams creates a new SecretsSecretsBulkDeleteParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsBulkDeleteParamsWithContext

func NewSecretsSecretsBulkDeleteParamsWithContext(ctx context.Context) *SecretsSecretsBulkDeleteParams

NewSecretsSecretsBulkDeleteParamsWithContext creates a new SecretsSecretsBulkDeleteParams object with the ability to set a context for a request.

func NewSecretsSecretsBulkDeleteParamsWithHTTPClient

func NewSecretsSecretsBulkDeleteParamsWithHTTPClient(client *http.Client) *SecretsSecretsBulkDeleteParams

NewSecretsSecretsBulkDeleteParamsWithHTTPClient creates a new SecretsSecretsBulkDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsBulkDeleteParamsWithTimeout

func NewSecretsSecretsBulkDeleteParamsWithTimeout(timeout time.Duration) *SecretsSecretsBulkDeleteParams

NewSecretsSecretsBulkDeleteParamsWithTimeout creates a new SecretsSecretsBulkDeleteParams object with the ability to set a timeout on a request.

func (*SecretsSecretsBulkDeleteParams) SetContext

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

SetContext adds the context to the secrets secrets bulk delete params

func (*SecretsSecretsBulkDeleteParams) SetDefaults

func (o *SecretsSecretsBulkDeleteParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets bulk delete params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsBulkDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets bulk delete params

func (*SecretsSecretsBulkDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets bulk delete params

func (*SecretsSecretsBulkDeleteParams) WithContext

WithContext adds the context to the secrets secrets bulk delete params

func (*SecretsSecretsBulkDeleteParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets bulk delete params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsBulkDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secrets bulk delete params

func (*SecretsSecretsBulkDeleteParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets bulk delete params

func (*SecretsSecretsBulkDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsBulkDeleteReader

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

SecretsSecretsBulkDeleteReader is a Reader for the SecretsSecretsBulkDelete structure.

func (*SecretsSecretsBulkDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsBulkPartialUpdateOK

type SecretsSecretsBulkPartialUpdateOK struct {
	Payload *models.Secret
}
SecretsSecretsBulkPartialUpdateOK describes a response with status code 200, with default header values.

SecretsSecretsBulkPartialUpdateOK secrets secrets bulk partial update o k

func NewSecretsSecretsBulkPartialUpdateOK

func NewSecretsSecretsBulkPartialUpdateOK() *SecretsSecretsBulkPartialUpdateOK

NewSecretsSecretsBulkPartialUpdateOK creates a SecretsSecretsBulkPartialUpdateOK with default headers values

func (*SecretsSecretsBulkPartialUpdateOK) Error

func (*SecretsSecretsBulkPartialUpdateOK) GetPayload

type SecretsSecretsBulkPartialUpdateParams

type SecretsSecretsBulkPartialUpdateParams struct {

	// Data.
	Data *models.WritableSecret

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

SecretsSecretsBulkPartialUpdateParams contains all the parameters to send to the API endpoint

for the secrets secrets bulk partial update operation.

Typically these are written to a http.Request.

func NewSecretsSecretsBulkPartialUpdateParams

func NewSecretsSecretsBulkPartialUpdateParams() *SecretsSecretsBulkPartialUpdateParams

NewSecretsSecretsBulkPartialUpdateParams creates a new SecretsSecretsBulkPartialUpdateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsBulkPartialUpdateParamsWithContext

func NewSecretsSecretsBulkPartialUpdateParamsWithContext(ctx context.Context) *SecretsSecretsBulkPartialUpdateParams

NewSecretsSecretsBulkPartialUpdateParamsWithContext creates a new SecretsSecretsBulkPartialUpdateParams object with the ability to set a context for a request.

func NewSecretsSecretsBulkPartialUpdateParamsWithHTTPClient

func NewSecretsSecretsBulkPartialUpdateParamsWithHTTPClient(client *http.Client) *SecretsSecretsBulkPartialUpdateParams

NewSecretsSecretsBulkPartialUpdateParamsWithHTTPClient creates a new SecretsSecretsBulkPartialUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsBulkPartialUpdateParamsWithTimeout

func NewSecretsSecretsBulkPartialUpdateParamsWithTimeout(timeout time.Duration) *SecretsSecretsBulkPartialUpdateParams

NewSecretsSecretsBulkPartialUpdateParamsWithTimeout creates a new SecretsSecretsBulkPartialUpdateParams object with the ability to set a timeout on a request.

func (*SecretsSecretsBulkPartialUpdateParams) SetContext

SetContext adds the context to the secrets secrets bulk partial update params

func (*SecretsSecretsBulkPartialUpdateParams) SetData

SetData adds the data to the secrets secrets bulk partial update params

func (*SecretsSecretsBulkPartialUpdateParams) SetDefaults

func (o *SecretsSecretsBulkPartialUpdateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets bulk partial update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsBulkPartialUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets bulk partial update params

func (*SecretsSecretsBulkPartialUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets bulk partial update params

func (*SecretsSecretsBulkPartialUpdateParams) WithContext

WithContext adds the context to the secrets secrets bulk partial update params

func (*SecretsSecretsBulkPartialUpdateParams) WithData

WithData adds the data to the secrets secrets bulk partial update params

func (*SecretsSecretsBulkPartialUpdateParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets bulk partial update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsBulkPartialUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secrets bulk partial update params

func (*SecretsSecretsBulkPartialUpdateParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets bulk partial update params

func (*SecretsSecretsBulkPartialUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsBulkPartialUpdateReader

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

SecretsSecretsBulkPartialUpdateReader is a Reader for the SecretsSecretsBulkPartialUpdate structure.

func (*SecretsSecretsBulkPartialUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsBulkUpdateOK

type SecretsSecretsBulkUpdateOK struct {
	Payload *models.Secret
}
SecretsSecretsBulkUpdateOK describes a response with status code 200, with default header values.

SecretsSecretsBulkUpdateOK secrets secrets bulk update o k

func NewSecretsSecretsBulkUpdateOK

func NewSecretsSecretsBulkUpdateOK() *SecretsSecretsBulkUpdateOK

NewSecretsSecretsBulkUpdateOK creates a SecretsSecretsBulkUpdateOK with default headers values

func (*SecretsSecretsBulkUpdateOK) Error

func (*SecretsSecretsBulkUpdateOK) GetPayload

func (o *SecretsSecretsBulkUpdateOK) GetPayload() *models.Secret

type SecretsSecretsBulkUpdateParams

type SecretsSecretsBulkUpdateParams struct {

	// Data.
	Data *models.WritableSecret

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

SecretsSecretsBulkUpdateParams contains all the parameters to send to the API endpoint

for the secrets secrets bulk update operation.

Typically these are written to a http.Request.

func NewSecretsSecretsBulkUpdateParams

func NewSecretsSecretsBulkUpdateParams() *SecretsSecretsBulkUpdateParams

NewSecretsSecretsBulkUpdateParams creates a new SecretsSecretsBulkUpdateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsBulkUpdateParamsWithContext

func NewSecretsSecretsBulkUpdateParamsWithContext(ctx context.Context) *SecretsSecretsBulkUpdateParams

NewSecretsSecretsBulkUpdateParamsWithContext creates a new SecretsSecretsBulkUpdateParams object with the ability to set a context for a request.

func NewSecretsSecretsBulkUpdateParamsWithHTTPClient

func NewSecretsSecretsBulkUpdateParamsWithHTTPClient(client *http.Client) *SecretsSecretsBulkUpdateParams

NewSecretsSecretsBulkUpdateParamsWithHTTPClient creates a new SecretsSecretsBulkUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsBulkUpdateParamsWithTimeout

func NewSecretsSecretsBulkUpdateParamsWithTimeout(timeout time.Duration) *SecretsSecretsBulkUpdateParams

NewSecretsSecretsBulkUpdateParamsWithTimeout creates a new SecretsSecretsBulkUpdateParams object with the ability to set a timeout on a request.

func (*SecretsSecretsBulkUpdateParams) SetContext

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

SetContext adds the context to the secrets secrets bulk update params

func (*SecretsSecretsBulkUpdateParams) SetData

SetData adds the data to the secrets secrets bulk update params

func (*SecretsSecretsBulkUpdateParams) SetDefaults

func (o *SecretsSecretsBulkUpdateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets bulk update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsBulkUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets bulk update params

func (*SecretsSecretsBulkUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets bulk update params

func (*SecretsSecretsBulkUpdateParams) WithContext

WithContext adds the context to the secrets secrets bulk update params

func (*SecretsSecretsBulkUpdateParams) WithData

WithData adds the data to the secrets secrets bulk update params

func (*SecretsSecretsBulkUpdateParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets bulk update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsBulkUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secrets bulk update params

func (*SecretsSecretsBulkUpdateParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets bulk update params

func (*SecretsSecretsBulkUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsBulkUpdateReader

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

SecretsSecretsBulkUpdateReader is a Reader for the SecretsSecretsBulkUpdate structure.

func (*SecretsSecretsBulkUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsCreateCreated

type SecretsSecretsCreateCreated struct {
	Payload *models.Secret
}
SecretsSecretsCreateCreated describes a response with status code 201, with default header values.

SecretsSecretsCreateCreated secrets secrets create created

func NewSecretsSecretsCreateCreated

func NewSecretsSecretsCreateCreated() *SecretsSecretsCreateCreated

NewSecretsSecretsCreateCreated creates a SecretsSecretsCreateCreated with default headers values

func (*SecretsSecretsCreateCreated) Error

func (*SecretsSecretsCreateCreated) GetPayload

func (o *SecretsSecretsCreateCreated) GetPayload() *models.Secret

type SecretsSecretsCreateParams

type SecretsSecretsCreateParams struct {

	// Data.
	Data *models.WritableSecret

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

SecretsSecretsCreateParams contains all the parameters to send to the API endpoint

for the secrets secrets create operation.

Typically these are written to a http.Request.

func NewSecretsSecretsCreateParams

func NewSecretsSecretsCreateParams() *SecretsSecretsCreateParams

NewSecretsSecretsCreateParams creates a new SecretsSecretsCreateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsCreateParamsWithContext

func NewSecretsSecretsCreateParamsWithContext(ctx context.Context) *SecretsSecretsCreateParams

NewSecretsSecretsCreateParamsWithContext creates a new SecretsSecretsCreateParams object with the ability to set a context for a request.

func NewSecretsSecretsCreateParamsWithHTTPClient

func NewSecretsSecretsCreateParamsWithHTTPClient(client *http.Client) *SecretsSecretsCreateParams

NewSecretsSecretsCreateParamsWithHTTPClient creates a new SecretsSecretsCreateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsCreateParamsWithTimeout

func NewSecretsSecretsCreateParamsWithTimeout(timeout time.Duration) *SecretsSecretsCreateParams

NewSecretsSecretsCreateParamsWithTimeout creates a new SecretsSecretsCreateParams object with the ability to set a timeout on a request.

func (*SecretsSecretsCreateParams) SetContext

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

SetContext adds the context to the secrets secrets create params

func (*SecretsSecretsCreateParams) SetData

SetData adds the data to the secrets secrets create params

func (*SecretsSecretsCreateParams) SetDefaults

func (o *SecretsSecretsCreateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets create params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets create params

func (*SecretsSecretsCreateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets create params

func (*SecretsSecretsCreateParams) WithContext

WithContext adds the context to the secrets secrets create params

func (*SecretsSecretsCreateParams) WithData

WithData adds the data to the secrets secrets create params

func (*SecretsSecretsCreateParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets create params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsCreateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secrets create params

func (*SecretsSecretsCreateParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets create params

func (*SecretsSecretsCreateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsCreateReader

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

SecretsSecretsCreateReader is a Reader for the SecretsSecretsCreate structure.

func (*SecretsSecretsCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsDeleteNoContent

type SecretsSecretsDeleteNoContent struct {
}
SecretsSecretsDeleteNoContent describes a response with status code 204, with default header values.

SecretsSecretsDeleteNoContent secrets secrets delete no content

func NewSecretsSecretsDeleteNoContent

func NewSecretsSecretsDeleteNoContent() *SecretsSecretsDeleteNoContent

NewSecretsSecretsDeleteNoContent creates a SecretsSecretsDeleteNoContent with default headers values

func (*SecretsSecretsDeleteNoContent) Error

type SecretsSecretsDeleteParams

type SecretsSecretsDeleteParams struct {

	/* ID.

	   A unique integer value identifying this secret.
	*/
	ID int64

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

SecretsSecretsDeleteParams contains all the parameters to send to the API endpoint

for the secrets secrets delete operation.

Typically these are written to a http.Request.

func NewSecretsSecretsDeleteParams

func NewSecretsSecretsDeleteParams() *SecretsSecretsDeleteParams

NewSecretsSecretsDeleteParams creates a new SecretsSecretsDeleteParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsDeleteParamsWithContext

func NewSecretsSecretsDeleteParamsWithContext(ctx context.Context) *SecretsSecretsDeleteParams

NewSecretsSecretsDeleteParamsWithContext creates a new SecretsSecretsDeleteParams object with the ability to set a context for a request.

func NewSecretsSecretsDeleteParamsWithHTTPClient

func NewSecretsSecretsDeleteParamsWithHTTPClient(client *http.Client) *SecretsSecretsDeleteParams

NewSecretsSecretsDeleteParamsWithHTTPClient creates a new SecretsSecretsDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsDeleteParamsWithTimeout

func NewSecretsSecretsDeleteParamsWithTimeout(timeout time.Duration) *SecretsSecretsDeleteParams

NewSecretsSecretsDeleteParamsWithTimeout creates a new SecretsSecretsDeleteParams object with the ability to set a timeout on a request.

func (*SecretsSecretsDeleteParams) SetContext

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

SetContext adds the context to the secrets secrets delete params

func (*SecretsSecretsDeleteParams) SetDefaults

func (o *SecretsSecretsDeleteParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets delete params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets delete params

func (*SecretsSecretsDeleteParams) SetID

func (o *SecretsSecretsDeleteParams) SetID(id int64)

SetID adds the id to the secrets secrets delete params

func (*SecretsSecretsDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets delete params

func (*SecretsSecretsDeleteParams) WithContext

WithContext adds the context to the secrets secrets delete params

func (*SecretsSecretsDeleteParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets delete params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsDeleteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secrets delete params

func (*SecretsSecretsDeleteParams) WithID

WithID adds the id to the secrets secrets delete params

func (*SecretsSecretsDeleteParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets delete params

func (*SecretsSecretsDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsDeleteReader

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

SecretsSecretsDeleteReader is a Reader for the SecretsSecretsDelete structure.

func (*SecretsSecretsDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsListOK

type SecretsSecretsListOK struct {
	Payload *SecretsSecretsListOKBody
}
SecretsSecretsListOK describes a response with status code 200, with default header values.

SecretsSecretsListOK secrets secrets list o k

func NewSecretsSecretsListOK

func NewSecretsSecretsListOK() *SecretsSecretsListOK

NewSecretsSecretsListOK creates a SecretsSecretsListOK with default headers values

func (*SecretsSecretsListOK) Error

func (o *SecretsSecretsListOK) Error() string

func (*SecretsSecretsListOK) GetPayload

type SecretsSecretsListOKBody

type SecretsSecretsListOKBody struct {

	// count
	// Required: true
	Count *int64 `json:"count"`

	// next
	// Format: uri
	Next *strfmt.URI `json:"next,omitempty"`

	// previous
	// Format: uri
	Previous *strfmt.URI `json:"previous,omitempty"`

	// results
	// Required: true
	Results []*models.Secret `json:"results"`
}

SecretsSecretsListOKBody secrets secrets list o k body swagger:model SecretsSecretsListOKBody

func (*SecretsSecretsListOKBody) ContextValidate

func (o *SecretsSecretsListOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this secrets secrets list o k body based on the context it is used

func (*SecretsSecretsListOKBody) MarshalBinary

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

MarshalBinary interface implementation

func (*SecretsSecretsListOKBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*SecretsSecretsListOKBody) Validate

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

Validate validates this secrets secrets list o k body

type SecretsSecretsListParams

type SecretsSecretsListParams struct {

	// Created.
	Created *string

	// CreatedGte.
	CreatedGte *string

	// CreatedLte.
	CreatedLte *string

	// Device.
	Device *string

	// Devicen.
	Devicen *string

	// DeviceID.
	DeviceID *string

	// DeviceIDn.
	DeviceIDn *string

	// ID.
	ID *string

	// IDGt.
	IDGt *string

	// IDGte.
	IDGte *string

	// IDLt.
	IDLt *string

	// IDLte.
	IDLte *string

	// IDn.
	IDn *string

	// LastUpdated.
	LastUpdated *string

	// LastUpdatedGte.
	LastUpdatedGte *string

	// LastUpdatedLte.
	LastUpdatedLte *string

	/* Limit.

	   Number of results to return per page.
	*/
	Limit *int64

	// Name.
	Name *string

	// NameEmpty.
	NameEmpty *string

	// NameIc.
	NameIc *string

	// NameIe.
	NameIe *string

	// NameIew.
	NameIew *string

	// NameIsw.
	NameIsw *string

	// Namen.
	Namen *string

	// NameNic.
	NameNic *string

	// NameNie.
	NameNie *string

	// NameNiew.
	NameNiew *string

	// NameNisw.
	NameNisw *string

	/* Offset.

	   The initial index from which to return the results.
	*/
	Offset *int64

	// Q.
	Q *string

	// Role.
	Role *string

	// Rolen.
	Rolen *string

	// RoleID.
	RoleID *string

	// RoleIDn.
	RoleIDn *string

	// Tag.
	Tag *string

	// Tagn.
	Tagn *string

	// VirtualMachine.
	VirtualMachine *string

	// VirtualMachinen.
	VirtualMachinen *string

	// VirtualMachineID.
	VirtualMachineID *string

	// VirtualMachineIDn.
	VirtualMachineIDn *string

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

SecretsSecretsListParams contains all the parameters to send to the API endpoint

for the secrets secrets list operation.

Typically these are written to a http.Request.

func NewSecretsSecretsListParams

func NewSecretsSecretsListParams() *SecretsSecretsListParams

NewSecretsSecretsListParams creates a new SecretsSecretsListParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsListParamsWithContext

func NewSecretsSecretsListParamsWithContext(ctx context.Context) *SecretsSecretsListParams

NewSecretsSecretsListParamsWithContext creates a new SecretsSecretsListParams object with the ability to set a context for a request.

func NewSecretsSecretsListParamsWithHTTPClient

func NewSecretsSecretsListParamsWithHTTPClient(client *http.Client) *SecretsSecretsListParams

NewSecretsSecretsListParamsWithHTTPClient creates a new SecretsSecretsListParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsListParamsWithTimeout

func NewSecretsSecretsListParamsWithTimeout(timeout time.Duration) *SecretsSecretsListParams

NewSecretsSecretsListParamsWithTimeout creates a new SecretsSecretsListParams object with the ability to set a timeout on a request.

func (*SecretsSecretsListParams) SetContext

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

SetContext adds the context to the secrets secrets list params

func (*SecretsSecretsListParams) SetCreated

func (o *SecretsSecretsListParams) SetCreated(created *string)

SetCreated adds the created to the secrets secrets list params

func (*SecretsSecretsListParams) SetCreatedGte

func (o *SecretsSecretsListParams) SetCreatedGte(createdGte *string)

SetCreatedGte adds the createdGte to the secrets secrets list params

func (*SecretsSecretsListParams) SetCreatedLte

func (o *SecretsSecretsListParams) SetCreatedLte(createdLte *string)

SetCreatedLte adds the createdLte to the secrets secrets list params

func (*SecretsSecretsListParams) SetDefaults

func (o *SecretsSecretsListParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets list params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsListParams) SetDevice

func (o *SecretsSecretsListParams) SetDevice(device *string)

SetDevice adds the device to the secrets secrets list params

func (*SecretsSecretsListParams) SetDeviceID

func (o *SecretsSecretsListParams) SetDeviceID(deviceID *string)

SetDeviceID adds the deviceId to the secrets secrets list params

func (*SecretsSecretsListParams) SetDeviceIDn

func (o *SecretsSecretsListParams) SetDeviceIDn(deviceIDn *string)

SetDeviceIDn adds the deviceIdN to the secrets secrets list params

func (*SecretsSecretsListParams) SetDevicen

func (o *SecretsSecretsListParams) SetDevicen(devicen *string)

SetDevicen adds the deviceN to the secrets secrets list params

func (*SecretsSecretsListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets list params

func (*SecretsSecretsListParams) SetID

func (o *SecretsSecretsListParams) SetID(id *string)

SetID adds the id to the secrets secrets list params

func (*SecretsSecretsListParams) SetIDGt

func (o *SecretsSecretsListParams) SetIDGt(iDGt *string)

SetIDGt adds the idGt to the secrets secrets list params

func (*SecretsSecretsListParams) SetIDGte

func (o *SecretsSecretsListParams) SetIDGte(iDGte *string)

SetIDGte adds the idGte to the secrets secrets list params

func (*SecretsSecretsListParams) SetIDLt

func (o *SecretsSecretsListParams) SetIDLt(iDLt *string)

SetIDLt adds the idLt to the secrets secrets list params

func (*SecretsSecretsListParams) SetIDLte

func (o *SecretsSecretsListParams) SetIDLte(iDLte *string)

SetIDLte adds the idLte to the secrets secrets list params

func (*SecretsSecretsListParams) SetIDn

func (o *SecretsSecretsListParams) SetIDn(iDn *string)

SetIDn adds the idN to the secrets secrets list params

func (*SecretsSecretsListParams) SetLastUpdated

func (o *SecretsSecretsListParams) SetLastUpdated(lastUpdated *string)

SetLastUpdated adds the lastUpdated to the secrets secrets list params

func (*SecretsSecretsListParams) SetLastUpdatedGte

func (o *SecretsSecretsListParams) SetLastUpdatedGte(lastUpdatedGte *string)

SetLastUpdatedGte adds the lastUpdatedGte to the secrets secrets list params

func (*SecretsSecretsListParams) SetLastUpdatedLte

func (o *SecretsSecretsListParams) SetLastUpdatedLte(lastUpdatedLte *string)

SetLastUpdatedLte adds the lastUpdatedLte to the secrets secrets list params

func (*SecretsSecretsListParams) SetLimit

func (o *SecretsSecretsListParams) SetLimit(limit *int64)

SetLimit adds the limit to the secrets secrets list params

func (*SecretsSecretsListParams) SetName

func (o *SecretsSecretsListParams) SetName(name *string)

SetName adds the name to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameEmpty

func (o *SecretsSecretsListParams) SetNameEmpty(nameEmpty *string)

SetNameEmpty adds the nameEmpty to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameIc

func (o *SecretsSecretsListParams) SetNameIc(nameIc *string)

SetNameIc adds the nameIc to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameIe

func (o *SecretsSecretsListParams) SetNameIe(nameIe *string)

SetNameIe adds the nameIe to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameIew

func (o *SecretsSecretsListParams) SetNameIew(nameIew *string)

SetNameIew adds the nameIew to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameIsw

func (o *SecretsSecretsListParams) SetNameIsw(nameIsw *string)

SetNameIsw adds the nameIsw to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameNic

func (o *SecretsSecretsListParams) SetNameNic(nameNic *string)

SetNameNic adds the nameNic to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameNie

func (o *SecretsSecretsListParams) SetNameNie(nameNie *string)

SetNameNie adds the nameNie to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameNiew

func (o *SecretsSecretsListParams) SetNameNiew(nameNiew *string)

SetNameNiew adds the nameNiew to the secrets secrets list params

func (*SecretsSecretsListParams) SetNameNisw

func (o *SecretsSecretsListParams) SetNameNisw(nameNisw *string)

SetNameNisw adds the nameNisw to the secrets secrets list params

func (*SecretsSecretsListParams) SetNamen

func (o *SecretsSecretsListParams) SetNamen(namen *string)

SetNamen adds the nameN to the secrets secrets list params

func (*SecretsSecretsListParams) SetOffset

func (o *SecretsSecretsListParams) SetOffset(offset *int64)

SetOffset adds the offset to the secrets secrets list params

func (*SecretsSecretsListParams) SetQ

func (o *SecretsSecretsListParams) SetQ(q *string)

SetQ adds the q to the secrets secrets list params

func (*SecretsSecretsListParams) SetRole

func (o *SecretsSecretsListParams) SetRole(role *string)

SetRole adds the role to the secrets secrets list params

func (*SecretsSecretsListParams) SetRoleID

func (o *SecretsSecretsListParams) SetRoleID(roleID *string)

SetRoleID adds the roleId to the secrets secrets list params

func (*SecretsSecretsListParams) SetRoleIDn

func (o *SecretsSecretsListParams) SetRoleIDn(roleIDn *string)

SetRoleIDn adds the roleIdN to the secrets secrets list params

func (*SecretsSecretsListParams) SetRolen

func (o *SecretsSecretsListParams) SetRolen(rolen *string)

SetRolen adds the roleN to the secrets secrets list params

func (*SecretsSecretsListParams) SetTag

func (o *SecretsSecretsListParams) SetTag(tag *string)

SetTag adds the tag to the secrets secrets list params

func (*SecretsSecretsListParams) SetTagn

func (o *SecretsSecretsListParams) SetTagn(tagn *string)

SetTagn adds the tagN to the secrets secrets list params

func (*SecretsSecretsListParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets list params

func (*SecretsSecretsListParams) SetVirtualMachine

func (o *SecretsSecretsListParams) SetVirtualMachine(virtualMachine *string)

SetVirtualMachine adds the virtualMachine to the secrets secrets list params

func (*SecretsSecretsListParams) SetVirtualMachineID

func (o *SecretsSecretsListParams) SetVirtualMachineID(virtualMachineID *string)

SetVirtualMachineID adds the virtualMachineId to the secrets secrets list params

func (*SecretsSecretsListParams) SetVirtualMachineIDn

func (o *SecretsSecretsListParams) SetVirtualMachineIDn(virtualMachineIDn *string)

SetVirtualMachineIDn adds the virtualMachineIdN to the secrets secrets list params

func (*SecretsSecretsListParams) SetVirtualMachinen

func (o *SecretsSecretsListParams) SetVirtualMachinen(virtualMachinen *string)

SetVirtualMachinen adds the virtualMachineN to the secrets secrets list params

func (*SecretsSecretsListParams) WithContext

WithContext adds the context to the secrets secrets list params

func (*SecretsSecretsListParams) WithCreated

func (o *SecretsSecretsListParams) WithCreated(created *string) *SecretsSecretsListParams

WithCreated adds the created to the secrets secrets list params

func (*SecretsSecretsListParams) WithCreatedGte

func (o *SecretsSecretsListParams) WithCreatedGte(createdGte *string) *SecretsSecretsListParams

WithCreatedGte adds the createdGte to the secrets secrets list params

func (*SecretsSecretsListParams) WithCreatedLte

func (o *SecretsSecretsListParams) WithCreatedLte(createdLte *string) *SecretsSecretsListParams

WithCreatedLte adds the createdLte to the secrets secrets list params

func (*SecretsSecretsListParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets list params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsListParams) WithDevice

WithDevice adds the device to the secrets secrets list params

func (*SecretsSecretsListParams) WithDeviceID

func (o *SecretsSecretsListParams) WithDeviceID(deviceID *string) *SecretsSecretsListParams

WithDeviceID adds the deviceID to the secrets secrets list params

func (*SecretsSecretsListParams) WithDeviceIDn

func (o *SecretsSecretsListParams) WithDeviceIDn(deviceIDn *string) *SecretsSecretsListParams

WithDeviceIDn adds the deviceIDn to the secrets secrets list params

func (*SecretsSecretsListParams) WithDevicen

func (o *SecretsSecretsListParams) WithDevicen(devicen *string) *SecretsSecretsListParams

WithDevicen adds the devicen to the secrets secrets list params

func (*SecretsSecretsListParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the secrets secrets list params

func (*SecretsSecretsListParams) WithID

WithID adds the id to the secrets secrets list params

func (*SecretsSecretsListParams) WithIDGt

WithIDGt adds the iDGt to the secrets secrets list params

func (*SecretsSecretsListParams) WithIDGte

WithIDGte adds the iDGte to the secrets secrets list params

func (*SecretsSecretsListParams) WithIDLt

WithIDLt adds the iDLt to the secrets secrets list params

func (*SecretsSecretsListParams) WithIDLte

WithIDLte adds the iDLte to the secrets secrets list params

func (*SecretsSecretsListParams) WithIDn

WithIDn adds the iDn to the secrets secrets list params

func (*SecretsSecretsListParams) WithLastUpdated

func (o *SecretsSecretsListParams) WithLastUpdated(lastUpdated *string) *SecretsSecretsListParams

WithLastUpdated adds the lastUpdated to the secrets secrets list params

func (*SecretsSecretsListParams) WithLastUpdatedGte

func (o *SecretsSecretsListParams) WithLastUpdatedGte(lastUpdatedGte *string) *SecretsSecretsListParams

WithLastUpdatedGte adds the lastUpdatedGte to the secrets secrets list params

func (*SecretsSecretsListParams) WithLastUpdatedLte

func (o *SecretsSecretsListParams) WithLastUpdatedLte(lastUpdatedLte *string) *SecretsSecretsListParams

WithLastUpdatedLte adds the lastUpdatedLte to the secrets secrets list params

func (*SecretsSecretsListParams) WithLimit

WithLimit adds the limit to the secrets secrets list params

func (*SecretsSecretsListParams) WithName

WithName adds the name to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameEmpty

func (o *SecretsSecretsListParams) WithNameEmpty(nameEmpty *string) *SecretsSecretsListParams

WithNameEmpty adds the nameEmpty to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameIc

WithNameIc adds the nameIc to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameIe

WithNameIe adds the nameIe to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameIew

func (o *SecretsSecretsListParams) WithNameIew(nameIew *string) *SecretsSecretsListParams

WithNameIew adds the nameIew to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameIsw

func (o *SecretsSecretsListParams) WithNameIsw(nameIsw *string) *SecretsSecretsListParams

WithNameIsw adds the nameIsw to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameNic

func (o *SecretsSecretsListParams) WithNameNic(nameNic *string) *SecretsSecretsListParams

WithNameNic adds the nameNic to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameNie

func (o *SecretsSecretsListParams) WithNameNie(nameNie *string) *SecretsSecretsListParams

WithNameNie adds the nameNie to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameNiew

func (o *SecretsSecretsListParams) WithNameNiew(nameNiew *string) *SecretsSecretsListParams

WithNameNiew adds the nameNiew to the secrets secrets list params

func (*SecretsSecretsListParams) WithNameNisw

func (o *SecretsSecretsListParams) WithNameNisw(nameNisw *string) *SecretsSecretsListParams

WithNameNisw adds the nameNisw to the secrets secrets list params

func (*SecretsSecretsListParams) WithNamen

WithNamen adds the namen to the secrets secrets list params

func (*SecretsSecretsListParams) WithOffset

WithOffset adds the offset to the secrets secrets list params

func (*SecretsSecretsListParams) WithQ

WithQ adds the q to the secrets secrets list params

func (*SecretsSecretsListParams) WithRole

WithRole adds the role to the secrets secrets list params

func (*SecretsSecretsListParams) WithRoleID

WithRoleID adds the roleID to the secrets secrets list params

func (*SecretsSecretsListParams) WithRoleIDn

func (o *SecretsSecretsListParams) WithRoleIDn(roleIDn *string) *SecretsSecretsListParams

WithRoleIDn adds the roleIDn to the secrets secrets list params

func (*SecretsSecretsListParams) WithRolen

WithRolen adds the rolen to the secrets secrets list params

func (*SecretsSecretsListParams) WithTag

WithTag adds the tag to the secrets secrets list params

func (*SecretsSecretsListParams) WithTagn

WithTagn adds the tagn to the secrets secrets list params

func (*SecretsSecretsListParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets list params

func (*SecretsSecretsListParams) WithVirtualMachine

func (o *SecretsSecretsListParams) WithVirtualMachine(virtualMachine *string) *SecretsSecretsListParams

WithVirtualMachine adds the virtualMachine to the secrets secrets list params

func (*SecretsSecretsListParams) WithVirtualMachineID

func (o *SecretsSecretsListParams) WithVirtualMachineID(virtualMachineID *string) *SecretsSecretsListParams

WithVirtualMachineID adds the virtualMachineID to the secrets secrets list params

func (*SecretsSecretsListParams) WithVirtualMachineIDn

func (o *SecretsSecretsListParams) WithVirtualMachineIDn(virtualMachineIDn *string) *SecretsSecretsListParams

WithVirtualMachineIDn adds the virtualMachineIDn to the secrets secrets list params

func (*SecretsSecretsListParams) WithVirtualMachinen

func (o *SecretsSecretsListParams) WithVirtualMachinen(virtualMachinen *string) *SecretsSecretsListParams

WithVirtualMachinen adds the virtualMachinen to the secrets secrets list params

func (*SecretsSecretsListParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsListReader

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

SecretsSecretsListReader is a Reader for the SecretsSecretsList structure.

func (*SecretsSecretsListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsPartialUpdateOK

type SecretsSecretsPartialUpdateOK struct {
	Payload *models.Secret
}
SecretsSecretsPartialUpdateOK describes a response with status code 200, with default header values.

SecretsSecretsPartialUpdateOK secrets secrets partial update o k

func NewSecretsSecretsPartialUpdateOK

func NewSecretsSecretsPartialUpdateOK() *SecretsSecretsPartialUpdateOK

NewSecretsSecretsPartialUpdateOK creates a SecretsSecretsPartialUpdateOK with default headers values

func (*SecretsSecretsPartialUpdateOK) Error

func (*SecretsSecretsPartialUpdateOK) GetPayload

func (o *SecretsSecretsPartialUpdateOK) GetPayload() *models.Secret

type SecretsSecretsPartialUpdateParams

type SecretsSecretsPartialUpdateParams struct {

	// Data.
	Data *models.WritableSecret

	/* ID.

	   A unique integer value identifying this secret.
	*/
	ID int64

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

SecretsSecretsPartialUpdateParams contains all the parameters to send to the API endpoint

for the secrets secrets partial update operation.

Typically these are written to a http.Request.

func NewSecretsSecretsPartialUpdateParams

func NewSecretsSecretsPartialUpdateParams() *SecretsSecretsPartialUpdateParams

NewSecretsSecretsPartialUpdateParams creates a new SecretsSecretsPartialUpdateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsPartialUpdateParamsWithContext

func NewSecretsSecretsPartialUpdateParamsWithContext(ctx context.Context) *SecretsSecretsPartialUpdateParams

NewSecretsSecretsPartialUpdateParamsWithContext creates a new SecretsSecretsPartialUpdateParams object with the ability to set a context for a request.

func NewSecretsSecretsPartialUpdateParamsWithHTTPClient

func NewSecretsSecretsPartialUpdateParamsWithHTTPClient(client *http.Client) *SecretsSecretsPartialUpdateParams

NewSecretsSecretsPartialUpdateParamsWithHTTPClient creates a new SecretsSecretsPartialUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsPartialUpdateParamsWithTimeout

func NewSecretsSecretsPartialUpdateParamsWithTimeout(timeout time.Duration) *SecretsSecretsPartialUpdateParams

NewSecretsSecretsPartialUpdateParamsWithTimeout creates a new SecretsSecretsPartialUpdateParams object with the ability to set a timeout on a request.

func (*SecretsSecretsPartialUpdateParams) SetContext

SetContext adds the context to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) SetData

SetData adds the data to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) SetDefaults

func (o *SecretsSecretsPartialUpdateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets partial update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsPartialUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) SetID

SetID adds the id to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) WithContext

WithContext adds the context to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) WithData

WithData adds the data to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets partial update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsPartialUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) WithID

WithID adds the id to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets partial update params

func (*SecretsSecretsPartialUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsPartialUpdateReader

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

SecretsSecretsPartialUpdateReader is a Reader for the SecretsSecretsPartialUpdate structure.

func (*SecretsSecretsPartialUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsReadOK

type SecretsSecretsReadOK struct {
	Payload *models.Secret
}
SecretsSecretsReadOK describes a response with status code 200, with default header values.

SecretsSecretsReadOK secrets secrets read o k

func NewSecretsSecretsReadOK

func NewSecretsSecretsReadOK() *SecretsSecretsReadOK

NewSecretsSecretsReadOK creates a SecretsSecretsReadOK with default headers values

func (*SecretsSecretsReadOK) Error

func (o *SecretsSecretsReadOK) Error() string

func (*SecretsSecretsReadOK) GetPayload

func (o *SecretsSecretsReadOK) GetPayload() *models.Secret

type SecretsSecretsReadParams

type SecretsSecretsReadParams struct {

	/* ID.

	   A unique integer value identifying this secret.
	*/
	ID int64

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

SecretsSecretsReadParams contains all the parameters to send to the API endpoint

for the secrets secrets read operation.

Typically these are written to a http.Request.

func NewSecretsSecretsReadParams

func NewSecretsSecretsReadParams() *SecretsSecretsReadParams

NewSecretsSecretsReadParams creates a new SecretsSecretsReadParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsReadParamsWithContext

func NewSecretsSecretsReadParamsWithContext(ctx context.Context) *SecretsSecretsReadParams

NewSecretsSecretsReadParamsWithContext creates a new SecretsSecretsReadParams object with the ability to set a context for a request.

func NewSecretsSecretsReadParamsWithHTTPClient

func NewSecretsSecretsReadParamsWithHTTPClient(client *http.Client) *SecretsSecretsReadParams

NewSecretsSecretsReadParamsWithHTTPClient creates a new SecretsSecretsReadParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsReadParamsWithTimeout

func NewSecretsSecretsReadParamsWithTimeout(timeout time.Duration) *SecretsSecretsReadParams

NewSecretsSecretsReadParamsWithTimeout creates a new SecretsSecretsReadParams object with the ability to set a timeout on a request.

func (*SecretsSecretsReadParams) SetContext

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

SetContext adds the context to the secrets secrets read params

func (*SecretsSecretsReadParams) SetDefaults

func (o *SecretsSecretsReadParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets read params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsReadParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets read params

func (*SecretsSecretsReadParams) SetID

func (o *SecretsSecretsReadParams) SetID(id int64)

SetID adds the id to the secrets secrets read params

func (*SecretsSecretsReadParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets read params

func (*SecretsSecretsReadParams) WithContext

WithContext adds the context to the secrets secrets read params

func (*SecretsSecretsReadParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets read params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsReadParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the secrets secrets read params

func (*SecretsSecretsReadParams) WithID

WithID adds the id to the secrets secrets read params

func (*SecretsSecretsReadParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets read params

func (*SecretsSecretsReadParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsReadReader

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

SecretsSecretsReadReader is a Reader for the SecretsSecretsRead structure.

func (*SecretsSecretsReadReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SecretsSecretsUpdateOK

type SecretsSecretsUpdateOK struct {
	Payload *models.Secret
}
SecretsSecretsUpdateOK describes a response with status code 200, with default header values.

SecretsSecretsUpdateOK secrets secrets update o k

func NewSecretsSecretsUpdateOK

func NewSecretsSecretsUpdateOK() *SecretsSecretsUpdateOK

NewSecretsSecretsUpdateOK creates a SecretsSecretsUpdateOK with default headers values

func (*SecretsSecretsUpdateOK) Error

func (o *SecretsSecretsUpdateOK) Error() string

func (*SecretsSecretsUpdateOK) GetPayload

func (o *SecretsSecretsUpdateOK) GetPayload() *models.Secret

type SecretsSecretsUpdateParams

type SecretsSecretsUpdateParams struct {

	// Data.
	Data *models.WritableSecret

	/* ID.

	   A unique integer value identifying this secret.
	*/
	ID int64

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

SecretsSecretsUpdateParams contains all the parameters to send to the API endpoint

for the secrets secrets update operation.

Typically these are written to a http.Request.

func NewSecretsSecretsUpdateParams

func NewSecretsSecretsUpdateParams() *SecretsSecretsUpdateParams

NewSecretsSecretsUpdateParams creates a new SecretsSecretsUpdateParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewSecretsSecretsUpdateParamsWithContext

func NewSecretsSecretsUpdateParamsWithContext(ctx context.Context) *SecretsSecretsUpdateParams

NewSecretsSecretsUpdateParamsWithContext creates a new SecretsSecretsUpdateParams object with the ability to set a context for a request.

func NewSecretsSecretsUpdateParamsWithHTTPClient

func NewSecretsSecretsUpdateParamsWithHTTPClient(client *http.Client) *SecretsSecretsUpdateParams

NewSecretsSecretsUpdateParamsWithHTTPClient creates a new SecretsSecretsUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSecretsSecretsUpdateParamsWithTimeout

func NewSecretsSecretsUpdateParamsWithTimeout(timeout time.Duration) *SecretsSecretsUpdateParams

NewSecretsSecretsUpdateParamsWithTimeout creates a new SecretsSecretsUpdateParams object with the ability to set a timeout on a request.

func (*SecretsSecretsUpdateParams) SetContext

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

SetContext adds the context to the secrets secrets update params

func (*SecretsSecretsUpdateParams) SetData

SetData adds the data to the secrets secrets update params

func (*SecretsSecretsUpdateParams) SetDefaults

func (o *SecretsSecretsUpdateParams) SetDefaults()

SetDefaults hydrates default values in the secrets secrets update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the secrets secrets update params

func (*SecretsSecretsUpdateParams) SetID

func (o *SecretsSecretsUpdateParams) SetID(id int64)

SetID adds the id to the secrets secrets update params

func (*SecretsSecretsUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the secrets secrets update params

func (*SecretsSecretsUpdateParams) WithContext

WithContext adds the context to the secrets secrets update params

func (*SecretsSecretsUpdateParams) WithData

WithData adds the data to the secrets secrets update params

func (*SecretsSecretsUpdateParams) WithDefaults

WithDefaults hydrates default values in the secrets secrets update params (not the query body).

All values with no default are reset to their zero value.

func (*SecretsSecretsUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the secrets secrets update params

func (*SecretsSecretsUpdateParams) WithID

WithID adds the id to the secrets secrets update params

func (*SecretsSecretsUpdateParams) WithTimeout

WithTimeout adds the timeout to the secrets secrets update params

func (*SecretsSecretsUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SecretsSecretsUpdateReader

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

SecretsSecretsUpdateReader is a Reader for the SecretsSecretsUpdate structure.

func (*SecretsSecretsUpdateReader) ReadResponse

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