crypto_config

package
v0.0.6 Latest Latest
Warning

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

Go to latest
Published: Apr 3, 2019 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddExistingUseDomainBadRequest

type AddExistingUseDomainBadRequest struct {
}

AddExistingUseDomainBadRequest handles this case with default header values.

Unable to process request

func NewAddExistingUseDomainBadRequest

func NewAddExistingUseDomainBadRequest() *AddExistingUseDomainBadRequest

NewAddExistingUseDomainBadRequest creates a AddExistingUseDomainBadRequest with default headers values

func (*AddExistingUseDomainBadRequest) Error

type AddExistingUseDomainOK

type AddExistingUseDomainOK struct {
}

AddExistingUseDomainOK handles this case with default header values.

Successfully add the existing use domain to the crypto config

func NewAddExistingUseDomainOK

func NewAddExistingUseDomainOK() *AddExistingUseDomainOK

NewAddExistingUseDomainOK creates a AddExistingUseDomainOK with default headers values

func (*AddExistingUseDomainOK) Error

func (o *AddExistingUseDomainOK) Error() string

type AddExistingUseDomainParams

type AddExistingUseDomainParams struct {

	/*CryptoConfigID*/
	CryptoConfigID string
	/*UseDomainID*/
	UseDomainID string

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

AddExistingUseDomainParams contains all the parameters to send to the API endpoint for the add existing use domain operation typically these are written to a http.Request

func NewAddExistingUseDomainParams

func NewAddExistingUseDomainParams() *AddExistingUseDomainParams

NewAddExistingUseDomainParams creates a new AddExistingUseDomainParams object with the default values initialized.

func NewAddExistingUseDomainParamsWithContext

func NewAddExistingUseDomainParamsWithContext(ctx context.Context) *AddExistingUseDomainParams

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

func NewAddExistingUseDomainParamsWithHTTPClient

func NewAddExistingUseDomainParamsWithHTTPClient(client *http.Client) *AddExistingUseDomainParams

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

func NewAddExistingUseDomainParamsWithTimeout

func NewAddExistingUseDomainParamsWithTimeout(timeout time.Duration) *AddExistingUseDomainParams

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

func (*AddExistingUseDomainParams) SetContext

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

SetContext adds the context to the add existing use domain params

func (*AddExistingUseDomainParams) SetCryptoConfigID

func (o *AddExistingUseDomainParams) SetCryptoConfigID(cryptoConfigID string)

SetCryptoConfigID adds the cryptoConfigId to the add existing use domain params

func (*AddExistingUseDomainParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the add existing use domain params

func (*AddExistingUseDomainParams) SetTimeout

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

SetTimeout adds the timeout to the add existing use domain params

func (*AddExistingUseDomainParams) SetUseDomainID

func (o *AddExistingUseDomainParams) SetUseDomainID(useDomainID string)

SetUseDomainID adds the useDomainId to the add existing use domain params

func (*AddExistingUseDomainParams) WithContext

WithContext adds the context to the add existing use domain params

func (*AddExistingUseDomainParams) WithCryptoConfigID

func (o *AddExistingUseDomainParams) WithCryptoConfigID(cryptoConfigID string) *AddExistingUseDomainParams

WithCryptoConfigID adds the cryptoConfigID to the add existing use domain params

func (*AddExistingUseDomainParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the add existing use domain params

func (*AddExistingUseDomainParams) WithTimeout

WithTimeout adds the timeout to the add existing use domain params

func (*AddExistingUseDomainParams) WithUseDomainID

func (o *AddExistingUseDomainParams) WithUseDomainID(useDomainID string) *AddExistingUseDomainParams

WithUseDomainID adds the useDomainID to the add existing use domain params

func (*AddExistingUseDomainParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type AddExistingUseDomainReader

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

AddExistingUseDomainReader is a Reader for the AddExistingUseDomain structure.

func (*AddExistingUseDomainReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type AddUseDomainBadRequest

type AddUseDomainBadRequest struct {
}

AddUseDomainBadRequest handles this case with default header values.

Unable to process request

func NewAddUseDomainBadRequest

func NewAddUseDomainBadRequest() *AddUseDomainBadRequest

NewAddUseDomainBadRequest creates a AddUseDomainBadRequest with default headers values

func (*AddUseDomainBadRequest) Error

func (o *AddUseDomainBadRequest) Error() string

type AddUseDomainOK

type AddUseDomainOK struct {
	Payload *models.SymmetricKeyUseDomain
}

AddUseDomainOK handles this case with default header values.

Successfully add the new use domain to the crypto config overrides the id due to object creation

func NewAddUseDomainOK

func NewAddUseDomainOK() *AddUseDomainOK

NewAddUseDomainOK creates a AddUseDomainOK with default headers values

func (*AddUseDomainOK) Error

func (o *AddUseDomainOK) Error() string

type AddUseDomainParams

type AddUseDomainParams struct {

	/*CryptoConfigID*/
	CryptoConfigID string
	/*NewUseDomain*/
	NewUseDomain *models.SymmetricKeyUseDomain

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

AddUseDomainParams contains all the parameters to send to the API endpoint for the add use domain operation typically these are written to a http.Request

func NewAddUseDomainParams

func NewAddUseDomainParams() *AddUseDomainParams

NewAddUseDomainParams creates a new AddUseDomainParams object with the default values initialized.

func NewAddUseDomainParamsWithContext

func NewAddUseDomainParamsWithContext(ctx context.Context) *AddUseDomainParams

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

func NewAddUseDomainParamsWithHTTPClient

func NewAddUseDomainParamsWithHTTPClient(client *http.Client) *AddUseDomainParams

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

func NewAddUseDomainParamsWithTimeout

func NewAddUseDomainParamsWithTimeout(timeout time.Duration) *AddUseDomainParams

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

func (*AddUseDomainParams) SetContext

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

SetContext adds the context to the add use domain params

func (*AddUseDomainParams) SetCryptoConfigID

func (o *AddUseDomainParams) SetCryptoConfigID(cryptoConfigID string)

SetCryptoConfigID adds the cryptoConfigId to the add use domain params

func (*AddUseDomainParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the add use domain params

func (*AddUseDomainParams) SetNewUseDomain

func (o *AddUseDomainParams) SetNewUseDomain(newUseDomain *models.SymmetricKeyUseDomain)

SetNewUseDomain adds the newUseDomain to the add use domain params

func (*AddUseDomainParams) SetTimeout

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

SetTimeout adds the timeout to the add use domain params

func (*AddUseDomainParams) WithContext

WithContext adds the context to the add use domain params

func (*AddUseDomainParams) WithCryptoConfigID

func (o *AddUseDomainParams) WithCryptoConfigID(cryptoConfigID string) *AddUseDomainParams

WithCryptoConfigID adds the cryptoConfigID to the add use domain params

func (*AddUseDomainParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the add use domain params

func (*AddUseDomainParams) WithNewUseDomain

func (o *AddUseDomainParams) WithNewUseDomain(newUseDomain *models.SymmetricKeyUseDomain) *AddUseDomainParams

WithNewUseDomain adds the newUseDomain to the add use domain params

func (*AddUseDomainParams) WithTimeout

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

WithTimeout adds the timeout to the add use domain params

func (*AddUseDomainParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type AddUseDomainReader

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

AddUseDomainReader is a Reader for the AddUseDomain structure.

func (*AddUseDomainReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type Client

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

Client for crypto config API

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) *Client

New creates a new crypto config API client.

func (*Client) AddExistingUseDomain

func (a *Client) AddExistingUseDomain(params *AddExistingUseDomainParams, authInfo runtime.ClientAuthInfoWriter) (*AddExistingUseDomainOK, error)

AddExistingUseDomain adds an existing use domain to another crypto config

func (*Client) AddUseDomain

func (a *Client) AddUseDomain(params *AddUseDomainParams, authInfo runtime.ClientAuthInfoWriter) (*AddUseDomainOK, error)

AddUseDomain adds a new active use domain and attached it to the crypto config

func (*Client) GetCryptoConfig

func (a *Client) GetCryptoConfig(params *GetCryptoConfigParams, authInfo runtime.ClientAuthInfoWriter) (*GetCryptoConfigOK, error)

GetCryptoConfig gets the crypto configurations

func (*Client) RemoveUseDomain

func (a *Client) RemoveUseDomain(params *RemoveUseDomainParams, authInfo runtime.ClientAuthInfoWriter) (*RemoveUseDomainOK, error)

RemoveUseDomain expires a use domain

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateCryptoConfigFallbackToCloud

UpdateCryptoConfigFallbackToCloud updates an existing crypto config s asymmetric key TTL

func (*Client) UpdateCryptoConfigSelectorScheme

UpdateCryptoConfigSelectorScheme updates an existing crypto config s domain selector scheme

type GetCryptoConfigBadRequest

type GetCryptoConfigBadRequest struct {
}

GetCryptoConfigBadRequest handles this case with default header values.

Unable to process request

func NewGetCryptoConfigBadRequest

func NewGetCryptoConfigBadRequest() *GetCryptoConfigBadRequest

NewGetCryptoConfigBadRequest creates a GetCryptoConfigBadRequest with default headers values

func (*GetCryptoConfigBadRequest) Error

func (o *GetCryptoConfigBadRequest) Error() string

type GetCryptoConfigOK

type GetCryptoConfigOK struct {
	Payload *models.CryptoConfig
}

GetCryptoConfigOK handles this case with default header values.

Returns the requested configuration

func NewGetCryptoConfigOK

func NewGetCryptoConfigOK() *GetCryptoConfigOK

NewGetCryptoConfigOK creates a GetCryptoConfigOK with default headers values

func (*GetCryptoConfigOK) Error

func (o *GetCryptoConfigOK) Error() string

type GetCryptoConfigParams

type GetCryptoConfigParams struct {

	/*CryptoConfigID*/
	CryptoConfigID string

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

GetCryptoConfigParams contains all the parameters to send to the API endpoint for the get crypto config operation typically these are written to a http.Request

func NewGetCryptoConfigParams

func NewGetCryptoConfigParams() *GetCryptoConfigParams

NewGetCryptoConfigParams creates a new GetCryptoConfigParams object with the default values initialized.

func NewGetCryptoConfigParamsWithContext

func NewGetCryptoConfigParamsWithContext(ctx context.Context) *GetCryptoConfigParams

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

func NewGetCryptoConfigParamsWithHTTPClient

func NewGetCryptoConfigParamsWithHTTPClient(client *http.Client) *GetCryptoConfigParams

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

func NewGetCryptoConfigParamsWithTimeout

func NewGetCryptoConfigParamsWithTimeout(timeout time.Duration) *GetCryptoConfigParams

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

func (*GetCryptoConfigParams) SetContext

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

SetContext adds the context to the get crypto config params

func (*GetCryptoConfigParams) SetCryptoConfigID

func (o *GetCryptoConfigParams) SetCryptoConfigID(cryptoConfigID string)

SetCryptoConfigID adds the cryptoConfigId to the get crypto config params

func (*GetCryptoConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get crypto config params

func (*GetCryptoConfigParams) SetTimeout

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

SetTimeout adds the timeout to the get crypto config params

func (*GetCryptoConfigParams) WithContext

WithContext adds the context to the get crypto config params

func (*GetCryptoConfigParams) WithCryptoConfigID

func (o *GetCryptoConfigParams) WithCryptoConfigID(cryptoConfigID string) *GetCryptoConfigParams

WithCryptoConfigID adds the cryptoConfigID to the get crypto config params

func (*GetCryptoConfigParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get crypto config params

func (*GetCryptoConfigParams) WithTimeout

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

WithTimeout adds the timeout to the get crypto config params

func (*GetCryptoConfigParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetCryptoConfigReader

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

GetCryptoConfigReader is a Reader for the GetCryptoConfig structure.

func (*GetCryptoConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RemoveUseDomainBadRequest

type RemoveUseDomainBadRequest struct {
}

RemoveUseDomainBadRequest handles this case with default header values.

Unable to process request

func NewRemoveUseDomainBadRequest

func NewRemoveUseDomainBadRequest() *RemoveUseDomainBadRequest

NewRemoveUseDomainBadRequest creates a RemoveUseDomainBadRequest with default headers values

func (*RemoveUseDomainBadRequest) Error

func (o *RemoveUseDomainBadRequest) Error() string

type RemoveUseDomainOK

type RemoveUseDomainOK struct {
}

RemoveUseDomainOK handles this case with default header values.

Successfully expired the use domain from service

func NewRemoveUseDomainOK

func NewRemoveUseDomainOK() *RemoveUseDomainOK

NewRemoveUseDomainOK creates a RemoveUseDomainOK with default headers values

func (*RemoveUseDomainOK) Error

func (o *RemoveUseDomainOK) Error() string

type RemoveUseDomainParams

type RemoveUseDomainParams struct {

	/*UseDomainID*/
	UseDomainID string

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

RemoveUseDomainParams contains all the parameters to send to the API endpoint for the remove use domain operation typically these are written to a http.Request

func NewRemoveUseDomainParams

func NewRemoveUseDomainParams() *RemoveUseDomainParams

NewRemoveUseDomainParams creates a new RemoveUseDomainParams object with the default values initialized.

func NewRemoveUseDomainParamsWithContext

func NewRemoveUseDomainParamsWithContext(ctx context.Context) *RemoveUseDomainParams

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

func NewRemoveUseDomainParamsWithHTTPClient

func NewRemoveUseDomainParamsWithHTTPClient(client *http.Client) *RemoveUseDomainParams

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

func NewRemoveUseDomainParamsWithTimeout

func NewRemoveUseDomainParamsWithTimeout(timeout time.Duration) *RemoveUseDomainParams

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

func (*RemoveUseDomainParams) SetContext

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

SetContext adds the context to the remove use domain params

func (*RemoveUseDomainParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the remove use domain params

func (*RemoveUseDomainParams) SetTimeout

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

SetTimeout adds the timeout to the remove use domain params

func (*RemoveUseDomainParams) SetUseDomainID

func (o *RemoveUseDomainParams) SetUseDomainID(useDomainID string)

SetUseDomainID adds the useDomainId to the remove use domain params

func (*RemoveUseDomainParams) WithContext

WithContext adds the context to the remove use domain params

func (*RemoveUseDomainParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the remove use domain params

func (*RemoveUseDomainParams) WithTimeout

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

WithTimeout adds the timeout to the remove use domain params

func (*RemoveUseDomainParams) WithUseDomainID

func (o *RemoveUseDomainParams) WithUseDomainID(useDomainID string) *RemoveUseDomainParams

WithUseDomainID adds the useDomainID to the remove use domain params

func (*RemoveUseDomainParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type RemoveUseDomainReader

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

RemoveUseDomainReader is a Reader for the RemoveUseDomain structure.

func (*RemoveUseDomainReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateCryptoConfigFallbackToCloudBadRequest

type UpdateCryptoConfigFallbackToCloudBadRequest struct {
}

UpdateCryptoConfigFallbackToCloudBadRequest handles this case with default header values.

Unable to process request

func NewUpdateCryptoConfigFallbackToCloudBadRequest

func NewUpdateCryptoConfigFallbackToCloudBadRequest() *UpdateCryptoConfigFallbackToCloudBadRequest

NewUpdateCryptoConfigFallbackToCloudBadRequest creates a UpdateCryptoConfigFallbackToCloudBadRequest with default headers values

func (*UpdateCryptoConfigFallbackToCloudBadRequest) Error

type UpdateCryptoConfigFallbackToCloudOK

type UpdateCryptoConfigFallbackToCloudOK struct {
}

UpdateCryptoConfigFallbackToCloudOK handles this case with default header values.

Successfully updated the fallback to cloud setting on use domain

func NewUpdateCryptoConfigFallbackToCloudOK

func NewUpdateCryptoConfigFallbackToCloudOK() *UpdateCryptoConfigFallbackToCloudOK

NewUpdateCryptoConfigFallbackToCloudOK creates a UpdateCryptoConfigFallbackToCloudOK with default headers values

func (*UpdateCryptoConfigFallbackToCloudOK) Error

type UpdateCryptoConfigFallbackToCloudParams

type UpdateCryptoConfigFallbackToCloudParams struct {

	/*FallbackToCloud*/
	FallbackToCloud bool
	/*UseDomainID*/
	UseDomainID string

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

UpdateCryptoConfigFallbackToCloudParams contains all the parameters to send to the API endpoint for the update crypto config fallback to cloud operation typically these are written to a http.Request

func NewUpdateCryptoConfigFallbackToCloudParams

func NewUpdateCryptoConfigFallbackToCloudParams() *UpdateCryptoConfigFallbackToCloudParams

NewUpdateCryptoConfigFallbackToCloudParams creates a new UpdateCryptoConfigFallbackToCloudParams object with the default values initialized.

func NewUpdateCryptoConfigFallbackToCloudParamsWithContext

func NewUpdateCryptoConfigFallbackToCloudParamsWithContext(ctx context.Context) *UpdateCryptoConfigFallbackToCloudParams

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

func NewUpdateCryptoConfigFallbackToCloudParamsWithHTTPClient

func NewUpdateCryptoConfigFallbackToCloudParamsWithHTTPClient(client *http.Client) *UpdateCryptoConfigFallbackToCloudParams

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

func NewUpdateCryptoConfigFallbackToCloudParamsWithTimeout

func NewUpdateCryptoConfigFallbackToCloudParamsWithTimeout(timeout time.Duration) *UpdateCryptoConfigFallbackToCloudParams

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

func (*UpdateCryptoConfigFallbackToCloudParams) SetContext

SetContext adds the context to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) SetFallbackToCloud

func (o *UpdateCryptoConfigFallbackToCloudParams) SetFallbackToCloud(fallbackToCloud bool)

SetFallbackToCloud adds the fallbackToCloud to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) SetTimeout

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

SetTimeout adds the timeout to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) SetUseDomainID

func (o *UpdateCryptoConfigFallbackToCloudParams) SetUseDomainID(useDomainID string)

SetUseDomainID adds the useDomainId to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) WithContext

WithContext adds the context to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) WithFallbackToCloud

WithFallbackToCloud adds the fallbackToCloud to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) WithTimeout

WithTimeout adds the timeout to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) WithUseDomainID

WithUseDomainID adds the useDomainID to the update crypto config fallback to cloud params

func (*UpdateCryptoConfigFallbackToCloudParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateCryptoConfigFallbackToCloudReader

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

UpdateCryptoConfigFallbackToCloudReader is a Reader for the UpdateCryptoConfigFallbackToCloud structure.

func (*UpdateCryptoConfigFallbackToCloudReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateCryptoConfigSelectorSchemeBadRequest

type UpdateCryptoConfigSelectorSchemeBadRequest struct {
}

UpdateCryptoConfigSelectorSchemeBadRequest handles this case with default header values.

Unable to process request

func NewUpdateCryptoConfigSelectorSchemeBadRequest

func NewUpdateCryptoConfigSelectorSchemeBadRequest() *UpdateCryptoConfigSelectorSchemeBadRequest

NewUpdateCryptoConfigSelectorSchemeBadRequest creates a UpdateCryptoConfigSelectorSchemeBadRequest with default headers values

func (*UpdateCryptoConfigSelectorSchemeBadRequest) Error

type UpdateCryptoConfigSelectorSchemeOK

type UpdateCryptoConfigSelectorSchemeOK struct {
}

UpdateCryptoConfigSelectorSchemeOK handles this case with default header values.

Successfully updated the crypto config

func NewUpdateCryptoConfigSelectorSchemeOK

func NewUpdateCryptoConfigSelectorSchemeOK() *UpdateCryptoConfigSelectorSchemeOK

NewUpdateCryptoConfigSelectorSchemeOK creates a UpdateCryptoConfigSelectorSchemeOK with default headers values

func (*UpdateCryptoConfigSelectorSchemeOK) Error

type UpdateCryptoConfigSelectorSchemeParams

type UpdateCryptoConfigSelectorSchemeParams struct {

	/*CryptoConfigID*/
	CryptoConfigID string
	/*NewSelectorScheme*/
	NewSelectorScheme string

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

UpdateCryptoConfigSelectorSchemeParams contains all the parameters to send to the API endpoint for the update crypto config selector scheme operation typically these are written to a http.Request

func NewUpdateCryptoConfigSelectorSchemeParams

func NewUpdateCryptoConfigSelectorSchemeParams() *UpdateCryptoConfigSelectorSchemeParams

NewUpdateCryptoConfigSelectorSchemeParams creates a new UpdateCryptoConfigSelectorSchemeParams object with the default values initialized.

func NewUpdateCryptoConfigSelectorSchemeParamsWithContext

func NewUpdateCryptoConfigSelectorSchemeParamsWithContext(ctx context.Context) *UpdateCryptoConfigSelectorSchemeParams

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

func NewUpdateCryptoConfigSelectorSchemeParamsWithHTTPClient

func NewUpdateCryptoConfigSelectorSchemeParamsWithHTTPClient(client *http.Client) *UpdateCryptoConfigSelectorSchemeParams

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

func NewUpdateCryptoConfigSelectorSchemeParamsWithTimeout

func NewUpdateCryptoConfigSelectorSchemeParamsWithTimeout(timeout time.Duration) *UpdateCryptoConfigSelectorSchemeParams

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

func (*UpdateCryptoConfigSelectorSchemeParams) SetContext

SetContext adds the context to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) SetCryptoConfigID

func (o *UpdateCryptoConfigSelectorSchemeParams) SetCryptoConfigID(cryptoConfigID string)

SetCryptoConfigID adds the cryptoConfigId to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) SetNewSelectorScheme

func (o *UpdateCryptoConfigSelectorSchemeParams) SetNewSelectorScheme(newSelectorScheme string)

SetNewSelectorScheme adds the newSelectorScheme to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) SetTimeout

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

SetTimeout adds the timeout to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) WithContext

WithContext adds the context to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) WithCryptoConfigID

WithCryptoConfigID adds the cryptoConfigID to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) WithNewSelectorScheme

func (o *UpdateCryptoConfigSelectorSchemeParams) WithNewSelectorScheme(newSelectorScheme string) *UpdateCryptoConfigSelectorSchemeParams

WithNewSelectorScheme adds the newSelectorScheme to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) WithTimeout

WithTimeout adds the timeout to the update crypto config selector scheme params

func (*UpdateCryptoConfigSelectorSchemeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateCryptoConfigSelectorSchemeReader

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

UpdateCryptoConfigSelectorSchemeReader is a Reader for the UpdateCryptoConfigSelectorScheme structure.

func (*UpdateCryptoConfigSelectorSchemeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL