application

package
v0.0.0-...-3852cca Latest Latest
Warning

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

Go to latest
Published: Apr 18, 2024 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ChangeRegistrationDetailsBadRequest

type ChangeRegistrationDetailsBadRequest struct {
}

ChangeRegistrationDetailsBadRequest describes a response with status code 400, with default header values.

Invalid application

func NewChangeRegistrationDetailsBadRequest

func NewChangeRegistrationDetailsBadRequest() *ChangeRegistrationDetailsBadRequest

NewChangeRegistrationDetailsBadRequest creates a ChangeRegistrationDetailsBadRequest with default headers values

func (*ChangeRegistrationDetailsBadRequest) Code

Code gets the status code for the change registration details bad request response

func (*ChangeRegistrationDetailsBadRequest) Error

func (*ChangeRegistrationDetailsBadRequest) IsClientError

func (o *ChangeRegistrationDetailsBadRequest) IsClientError() bool

IsClientError returns true when this change registration details bad request response has a 4xx status code

func (*ChangeRegistrationDetailsBadRequest) IsCode

IsCode returns true when this change registration details bad request response a status code equal to that given

func (*ChangeRegistrationDetailsBadRequest) IsRedirect

func (o *ChangeRegistrationDetailsBadRequest) IsRedirect() bool

IsRedirect returns true when this change registration details bad request response has a 3xx status code

func (*ChangeRegistrationDetailsBadRequest) IsServerError

func (o *ChangeRegistrationDetailsBadRequest) IsServerError() bool

IsServerError returns true when this change registration details bad request response has a 5xx status code

func (*ChangeRegistrationDetailsBadRequest) IsSuccess

IsSuccess returns true when this change registration details bad request response has a 2xx status code

func (*ChangeRegistrationDetailsBadRequest) String

type ChangeRegistrationDetailsConflict

type ChangeRegistrationDetailsConflict struct {
}

ChangeRegistrationDetailsConflict describes a response with status code 409, with default header values.

Conflict

func NewChangeRegistrationDetailsConflict

func NewChangeRegistrationDetailsConflict() *ChangeRegistrationDetailsConflict

NewChangeRegistrationDetailsConflict creates a ChangeRegistrationDetailsConflict with default headers values

func (*ChangeRegistrationDetailsConflict) Code

Code gets the status code for the change registration details conflict response

func (*ChangeRegistrationDetailsConflict) Error

func (*ChangeRegistrationDetailsConflict) IsClientError

func (o *ChangeRegistrationDetailsConflict) IsClientError() bool

IsClientError returns true when this change registration details conflict response has a 4xx status code

func (*ChangeRegistrationDetailsConflict) IsCode

func (o *ChangeRegistrationDetailsConflict) IsCode(code int) bool

IsCode returns true when this change registration details conflict response a status code equal to that given

func (*ChangeRegistrationDetailsConflict) IsRedirect

func (o *ChangeRegistrationDetailsConflict) IsRedirect() bool

IsRedirect returns true when this change registration details conflict response has a 3xx status code

func (*ChangeRegistrationDetailsConflict) IsServerError

func (o *ChangeRegistrationDetailsConflict) IsServerError() bool

IsServerError returns true when this change registration details conflict response has a 5xx status code

func (*ChangeRegistrationDetailsConflict) IsSuccess

func (o *ChangeRegistrationDetailsConflict) IsSuccess() bool

IsSuccess returns true when this change registration details conflict response has a 2xx status code

func (*ChangeRegistrationDetailsConflict) String

type ChangeRegistrationDetailsNotFound

type ChangeRegistrationDetailsNotFound struct {
}

ChangeRegistrationDetailsNotFound describes a response with status code 404, with default header values.

Not found

func NewChangeRegistrationDetailsNotFound

func NewChangeRegistrationDetailsNotFound() *ChangeRegistrationDetailsNotFound

NewChangeRegistrationDetailsNotFound creates a ChangeRegistrationDetailsNotFound with default headers values

func (*ChangeRegistrationDetailsNotFound) Code

Code gets the status code for the change registration details not found response

func (*ChangeRegistrationDetailsNotFound) Error

func (*ChangeRegistrationDetailsNotFound) IsClientError

func (o *ChangeRegistrationDetailsNotFound) IsClientError() bool

IsClientError returns true when this change registration details not found response has a 4xx status code

func (*ChangeRegistrationDetailsNotFound) IsCode

func (o *ChangeRegistrationDetailsNotFound) IsCode(code int) bool

IsCode returns true when this change registration details not found response a status code equal to that given

func (*ChangeRegistrationDetailsNotFound) IsRedirect

func (o *ChangeRegistrationDetailsNotFound) IsRedirect() bool

IsRedirect returns true when this change registration details not found response has a 3xx status code

func (*ChangeRegistrationDetailsNotFound) IsServerError

func (o *ChangeRegistrationDetailsNotFound) IsServerError() bool

IsServerError returns true when this change registration details not found response has a 5xx status code

func (*ChangeRegistrationDetailsNotFound) IsSuccess

func (o *ChangeRegistrationDetailsNotFound) IsSuccess() bool

IsSuccess returns true when this change registration details not found response has a 2xx status code

func (*ChangeRegistrationDetailsNotFound) String

type ChangeRegistrationDetailsOK

type ChangeRegistrationDetailsOK struct {
	Payload *models.ApplicationRegistrationUpsertResponse
}

ChangeRegistrationDetailsOK describes a response with status code 200, with default header values.

Change registration operation result

func NewChangeRegistrationDetailsOK

func NewChangeRegistrationDetailsOK() *ChangeRegistrationDetailsOK

NewChangeRegistrationDetailsOK creates a ChangeRegistrationDetailsOK with default headers values

func (*ChangeRegistrationDetailsOK) Code

func (o *ChangeRegistrationDetailsOK) Code() int

Code gets the status code for the change registration details o k response

func (*ChangeRegistrationDetailsOK) Error

func (*ChangeRegistrationDetailsOK) GetPayload

func (*ChangeRegistrationDetailsOK) IsClientError

func (o *ChangeRegistrationDetailsOK) IsClientError() bool

IsClientError returns true when this change registration details o k response has a 4xx status code

func (*ChangeRegistrationDetailsOK) IsCode

func (o *ChangeRegistrationDetailsOK) IsCode(code int) bool

IsCode returns true when this change registration details o k response a status code equal to that given

func (*ChangeRegistrationDetailsOK) IsRedirect

func (o *ChangeRegistrationDetailsOK) IsRedirect() bool

IsRedirect returns true when this change registration details o k response has a 3xx status code

func (*ChangeRegistrationDetailsOK) IsServerError

func (o *ChangeRegistrationDetailsOK) IsServerError() bool

IsServerError returns true when this change registration details o k response has a 5xx status code

func (*ChangeRegistrationDetailsOK) IsSuccess

func (o *ChangeRegistrationDetailsOK) IsSuccess() bool

IsSuccess returns true when this change registration details o k response has a 2xx status code

func (*ChangeRegistrationDetailsOK) String

func (o *ChangeRegistrationDetailsOK) String() string

type ChangeRegistrationDetailsParams

type ChangeRegistrationDetailsParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

	/* ApplicationRegistration.

	   request for Application to change
	*/
	ApplicationRegistration *models.ApplicationRegistrationRequest

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

ChangeRegistrationDetailsParams contains all the parameters to send to the API endpoint

for the change registration details operation.

Typically these are written to a http.Request.

func NewChangeRegistrationDetailsParams

func NewChangeRegistrationDetailsParams() *ChangeRegistrationDetailsParams

NewChangeRegistrationDetailsParams creates a new ChangeRegistrationDetailsParams 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 NewChangeRegistrationDetailsParamsWithContext

func NewChangeRegistrationDetailsParamsWithContext(ctx context.Context) *ChangeRegistrationDetailsParams

NewChangeRegistrationDetailsParamsWithContext creates a new ChangeRegistrationDetailsParams object with the ability to set a context for a request.

func NewChangeRegistrationDetailsParamsWithHTTPClient

func NewChangeRegistrationDetailsParamsWithHTTPClient(client *http.Client) *ChangeRegistrationDetailsParams

NewChangeRegistrationDetailsParamsWithHTTPClient creates a new ChangeRegistrationDetailsParams object with the ability to set a custom HTTPClient for a request.

func NewChangeRegistrationDetailsParamsWithTimeout

func NewChangeRegistrationDetailsParamsWithTimeout(timeout time.Duration) *ChangeRegistrationDetailsParams

NewChangeRegistrationDetailsParamsWithTimeout creates a new ChangeRegistrationDetailsParams object with the ability to set a timeout on a request.

func (*ChangeRegistrationDetailsParams) SetAppName

func (o *ChangeRegistrationDetailsParams) SetAppName(appName string)

SetAppName adds the appName to the change registration details params

func (*ChangeRegistrationDetailsParams) SetApplicationRegistration

func (o *ChangeRegistrationDetailsParams) SetApplicationRegistration(applicationRegistration *models.ApplicationRegistrationRequest)

SetApplicationRegistration adds the applicationRegistration to the change registration details params

func (*ChangeRegistrationDetailsParams) SetContext

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

SetContext adds the context to the change registration details params

func (*ChangeRegistrationDetailsParams) SetDefaults

func (o *ChangeRegistrationDetailsParams) SetDefaults()

SetDefaults hydrates default values in the change registration details params (not the query body).

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

func (*ChangeRegistrationDetailsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the change registration details params

func (*ChangeRegistrationDetailsParams) SetImpersonateGroup

func (o *ChangeRegistrationDetailsParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the change registration details params

func (*ChangeRegistrationDetailsParams) SetImpersonateUser

func (o *ChangeRegistrationDetailsParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the change registration details params

func (*ChangeRegistrationDetailsParams) SetTimeout

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

SetTimeout adds the timeout to the change registration details params

func (*ChangeRegistrationDetailsParams) WithAppName

WithAppName adds the appName to the change registration details params

func (*ChangeRegistrationDetailsParams) WithApplicationRegistration

func (o *ChangeRegistrationDetailsParams) WithApplicationRegistration(applicationRegistration *models.ApplicationRegistrationRequest) *ChangeRegistrationDetailsParams

WithApplicationRegistration adds the applicationRegistration to the change registration details params

func (*ChangeRegistrationDetailsParams) WithContext

WithContext adds the context to the change registration details params

func (*ChangeRegistrationDetailsParams) WithDefaults

WithDefaults hydrates default values in the change registration details params (not the query body).

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

func (*ChangeRegistrationDetailsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the change registration details params

func (*ChangeRegistrationDetailsParams) WithImpersonateGroup

func (o *ChangeRegistrationDetailsParams) WithImpersonateGroup(impersonateGroup *string) *ChangeRegistrationDetailsParams

WithImpersonateGroup adds the impersonateGroup to the change registration details params

func (*ChangeRegistrationDetailsParams) WithImpersonateUser

func (o *ChangeRegistrationDetailsParams) WithImpersonateUser(impersonateUser *string) *ChangeRegistrationDetailsParams

WithImpersonateUser adds the impersonateUser to the change registration details params

func (*ChangeRegistrationDetailsParams) WithTimeout

WithTimeout adds the timeout to the change registration details params

func (*ChangeRegistrationDetailsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ChangeRegistrationDetailsReader

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

ChangeRegistrationDetailsReader is a Reader for the ChangeRegistrationDetails structure.

func (*ChangeRegistrationDetailsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ChangeRegistrationDetailsUnauthorized

type ChangeRegistrationDetailsUnauthorized struct {
}

ChangeRegistrationDetailsUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewChangeRegistrationDetailsUnauthorized

func NewChangeRegistrationDetailsUnauthorized() *ChangeRegistrationDetailsUnauthorized

NewChangeRegistrationDetailsUnauthorized creates a ChangeRegistrationDetailsUnauthorized with default headers values

func (*ChangeRegistrationDetailsUnauthorized) Code

Code gets the status code for the change registration details unauthorized response

func (*ChangeRegistrationDetailsUnauthorized) Error

func (*ChangeRegistrationDetailsUnauthorized) IsClientError

func (o *ChangeRegistrationDetailsUnauthorized) IsClientError() bool

IsClientError returns true when this change registration details unauthorized response has a 4xx status code

func (*ChangeRegistrationDetailsUnauthorized) IsCode

IsCode returns true when this change registration details unauthorized response a status code equal to that given

func (*ChangeRegistrationDetailsUnauthorized) IsRedirect

IsRedirect returns true when this change registration details unauthorized response has a 3xx status code

func (*ChangeRegistrationDetailsUnauthorized) IsServerError

func (o *ChangeRegistrationDetailsUnauthorized) IsServerError() bool

IsServerError returns true when this change registration details unauthorized response has a 5xx status code

func (*ChangeRegistrationDetailsUnauthorized) IsSuccess

IsSuccess returns true when this change registration details unauthorized response has a 2xx status code

func (*ChangeRegistrationDetailsUnauthorized) String

type Client

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

Client for application API

func (*Client) ChangeRegistrationDetails

func (a *Client) ChangeRegistrationDetails(params *ChangeRegistrationDetailsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ChangeRegistrationDetailsOK, error)

ChangeRegistrationDetails updates application registration

func (*Client) DeleteApplication

func (a *Client) DeleteApplication(params *DeleteApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteApplicationOK, error)

DeleteApplication deletes application

func (*Client) DisableApplicationAlerting

func (a *Client) DisableApplicationAlerting(params *DisableApplicationAlertingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DisableApplicationAlertingOK, error)

DisableApplicationAlerting disables alerting for application namespace

func (*Client) EnableApplicationAlerting

func (a *Client) EnableApplicationAlerting(params *EnableApplicationAlertingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*EnableApplicationAlertingOK, error)

EnableApplicationAlerting enables alerting for application namespace

func (*Client) GetApplication

func (a *Client) GetApplication(params *GetApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetApplicationOK, error)

GetApplication gets the application by name

func (*Client) GetApplicationAlertingConfig

func (a *Client) GetApplicationAlertingConfig(params *GetApplicationAlertingConfigParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetApplicationAlertingConfigOK, error)

GetApplicationAlertingConfig gets alerts configuration for application namespace

func (*Client) GetBuildSecrets

func (a *Client) GetBuildSecrets(params *GetBuildSecretsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetBuildSecretsOK, error)

GetBuildSecrets lists the application build secrets

func (*Client) GetDeployKeyAndSecret

func (a *Client) GetDeployKeyAndSecret(params *GetDeployKeyAndSecretParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeployKeyAndSecretOK, error)

GetDeployKeyAndSecret gets deploy key and secret

func (*Client) GetDeployments

func (a *Client) GetDeployments(params *GetDeploymentsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentsOK, error)

GetDeployments lists the application deployments

func (*Client) GetPrivateImageHubs

func (a *Client) GetPrivateImageHubs(params *GetPrivateImageHubsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetPrivateImageHubsOK, error)

GetPrivateImageHubs lists the application private image hubs

func (*Client) IsDeployKeyValid

func (a *Client) IsDeployKeyValid(params *IsDeployKeyValidParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*IsDeployKeyValidOK, error)

IsDeployKeyValid checks if the deploy key is correctly setup for application by cloning the repository

func (*Client) ListPipelines

func (a *Client) ListPipelines(params *ListPipelinesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListPipelinesOK, error)

ListPipelines lists the supported pipelines

func (*Client) ModifyRegistrationDetails

func (a *Client) ModifyRegistrationDetails(params *ModifyRegistrationDetailsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ModifyRegistrationDetailsOK, error)

ModifyRegistrationDetails updates specific field s of an application registration

func (*Client) RegenerateDeployKey

func (a *Client) RegenerateDeployKey(params *RegenerateDeployKeyParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RegenerateDeployKeyNoContent, error)

RegenerateDeployKey regenerates deploy key

func (*Client) RestartApplication

func (a *Client) RestartApplication(params *RestartApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RestartApplicationOK, error)

RestartApplication restarts all components in all environments of the application stops all running components in all environments of the application pulls new images from image hub in radix configuration starts all components in all environments of the application again using up to date image

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) StartApplication

func (a *Client) StartApplication(params *StartApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StartApplicationOK, error)

StartApplication starts all components in all environments of the application

func (*Client) StopApplication

func (a *Client) StopApplication(params *StopApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StopApplicationOK, error)

StopApplication stops all components in the environment

func (*Client) TriggerPipelineBuild

func (a *Client) TriggerPipelineBuild(params *TriggerPipelineBuildParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerPipelineBuildOK, error)

TriggerPipelineBuild runs a build pipeline for a given application and branch

func (*Client) TriggerPipelineBuildDeploy

func (a *Client) TriggerPipelineBuildDeploy(params *TriggerPipelineBuildDeployParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerPipelineBuildDeployOK, error)

TriggerPipelineBuildDeploy runs a build deploy pipeline for a given application and branch

func (*Client) TriggerPipelineDeploy

func (a *Client) TriggerPipelineDeploy(params *TriggerPipelineDeployParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerPipelineDeployOK, error)

TriggerPipelineDeploy runs a deploy pipeline for a given application and environment

func (*Client) TriggerPipelinePromote

func (a *Client) TriggerPipelinePromote(params *TriggerPipelinePromoteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerPipelinePromoteOK, error)

TriggerPipelinePromote runs a promote pipeline for a given application and branch

func (*Client) UpdateApplicationAlertingConfig

func (a *Client) UpdateApplicationAlertingConfig(params *UpdateApplicationAlertingConfigParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateApplicationAlertingConfigOK, error)

UpdateApplicationAlertingConfig updates alerts configuration for application namespace

func (*Client) UpdateBuildSecretsSecretValue

func (a *Client) UpdateBuildSecretsSecretValue(params *UpdateBuildSecretsSecretValueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateBuildSecretsSecretValueOK, error)

UpdateBuildSecretsSecretValue updates an application build secret

func (*Client) UpdatePrivateImageHubsSecretValue

func (a *Client) UpdatePrivateImageHubsSecretValue(params *UpdatePrivateImageHubsSecretValueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdatePrivateImageHubsSecretValueOK, error)

UpdatePrivateImageHubsSecretValue updates an application private image hub secret

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	ChangeRegistrationDetails(params *ChangeRegistrationDetailsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ChangeRegistrationDetailsOK, error)

	DeleteApplication(params *DeleteApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteApplicationOK, error)

	DisableApplicationAlerting(params *DisableApplicationAlertingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DisableApplicationAlertingOK, error)

	EnableApplicationAlerting(params *EnableApplicationAlertingParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*EnableApplicationAlertingOK, error)

	GetApplication(params *GetApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetApplicationOK, error)

	GetApplicationAlertingConfig(params *GetApplicationAlertingConfigParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetApplicationAlertingConfigOK, error)

	GetBuildSecrets(params *GetBuildSecretsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetBuildSecretsOK, error)

	GetDeployKeyAndSecret(params *GetDeployKeyAndSecretParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeployKeyAndSecretOK, error)

	GetDeployments(params *GetDeploymentsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentsOK, error)

	GetPrivateImageHubs(params *GetPrivateImageHubsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetPrivateImageHubsOK, error)

	IsDeployKeyValid(params *IsDeployKeyValidParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*IsDeployKeyValidOK, error)

	ListPipelines(params *ListPipelinesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListPipelinesOK, error)

	ModifyRegistrationDetails(params *ModifyRegistrationDetailsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ModifyRegistrationDetailsOK, error)

	RegenerateDeployKey(params *RegenerateDeployKeyParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RegenerateDeployKeyNoContent, error)

	RestartApplication(params *RestartApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RestartApplicationOK, error)

	StartApplication(params *StartApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StartApplicationOK, error)

	StopApplication(params *StopApplicationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StopApplicationOK, error)

	TriggerPipelineBuild(params *TriggerPipelineBuildParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerPipelineBuildOK, error)

	TriggerPipelineBuildDeploy(params *TriggerPipelineBuildDeployParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerPipelineBuildDeployOK, error)

	TriggerPipelineDeploy(params *TriggerPipelineDeployParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerPipelineDeployOK, error)

	TriggerPipelinePromote(params *TriggerPipelinePromoteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*TriggerPipelinePromoteOK, error)

	UpdateApplicationAlertingConfig(params *UpdateApplicationAlertingConfigParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateApplicationAlertingConfigOK, error)

	UpdateBuildSecretsSecretValue(params *UpdateBuildSecretsSecretValueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateBuildSecretsSecretValueOK, error)

	UpdatePrivateImageHubsSecretValue(params *UpdatePrivateImageHubsSecretValueParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdatePrivateImageHubsSecretValueOK, 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 application API client.

type DeleteApplicationForbidden

type DeleteApplicationForbidden struct {
}

DeleteApplicationForbidden describes a response with status code 403, with default header values.

Forbidden

func NewDeleteApplicationForbidden

func NewDeleteApplicationForbidden() *DeleteApplicationForbidden

NewDeleteApplicationForbidden creates a DeleteApplicationForbidden with default headers values

func (*DeleteApplicationForbidden) Code

func (o *DeleteApplicationForbidden) Code() int

Code gets the status code for the delete application forbidden response

func (*DeleteApplicationForbidden) Error

func (*DeleteApplicationForbidden) IsClientError

func (o *DeleteApplicationForbidden) IsClientError() bool

IsClientError returns true when this delete application forbidden response has a 4xx status code

func (*DeleteApplicationForbidden) IsCode

func (o *DeleteApplicationForbidden) IsCode(code int) bool

IsCode returns true when this delete application forbidden response a status code equal to that given

func (*DeleteApplicationForbidden) IsRedirect

func (o *DeleteApplicationForbidden) IsRedirect() bool

IsRedirect returns true when this delete application forbidden response has a 3xx status code

func (*DeleteApplicationForbidden) IsServerError

func (o *DeleteApplicationForbidden) IsServerError() bool

IsServerError returns true when this delete application forbidden response has a 5xx status code

func (*DeleteApplicationForbidden) IsSuccess

func (o *DeleteApplicationForbidden) IsSuccess() bool

IsSuccess returns true when this delete application forbidden response has a 2xx status code

func (*DeleteApplicationForbidden) String

func (o *DeleteApplicationForbidden) String() string

type DeleteApplicationNotFound

type DeleteApplicationNotFound struct {
}

DeleteApplicationNotFound describes a response with status code 404, with default header values.

Not found

func NewDeleteApplicationNotFound

func NewDeleteApplicationNotFound() *DeleteApplicationNotFound

NewDeleteApplicationNotFound creates a DeleteApplicationNotFound with default headers values

func (*DeleteApplicationNotFound) Code

func (o *DeleteApplicationNotFound) Code() int

Code gets the status code for the delete application not found response

func (*DeleteApplicationNotFound) Error

func (o *DeleteApplicationNotFound) Error() string

func (*DeleteApplicationNotFound) IsClientError

func (o *DeleteApplicationNotFound) IsClientError() bool

IsClientError returns true when this delete application not found response has a 4xx status code

func (*DeleteApplicationNotFound) IsCode

func (o *DeleteApplicationNotFound) IsCode(code int) bool

IsCode returns true when this delete application not found response a status code equal to that given

func (*DeleteApplicationNotFound) IsRedirect

func (o *DeleteApplicationNotFound) IsRedirect() bool

IsRedirect returns true when this delete application not found response has a 3xx status code

func (*DeleteApplicationNotFound) IsServerError

func (o *DeleteApplicationNotFound) IsServerError() bool

IsServerError returns true when this delete application not found response has a 5xx status code

func (*DeleteApplicationNotFound) IsSuccess

func (o *DeleteApplicationNotFound) IsSuccess() bool

IsSuccess returns true when this delete application not found response has a 2xx status code

func (*DeleteApplicationNotFound) String

func (o *DeleteApplicationNotFound) String() string

type DeleteApplicationOK

type DeleteApplicationOK struct {
}

DeleteApplicationOK describes a response with status code 200, with default header values.

Application deleted ok

func NewDeleteApplicationOK

func NewDeleteApplicationOK() *DeleteApplicationOK

NewDeleteApplicationOK creates a DeleteApplicationOK with default headers values

func (*DeleteApplicationOK) Code

func (o *DeleteApplicationOK) Code() int

Code gets the status code for the delete application o k response

func (*DeleteApplicationOK) Error

func (o *DeleteApplicationOK) Error() string

func (*DeleteApplicationOK) IsClientError

func (o *DeleteApplicationOK) IsClientError() bool

IsClientError returns true when this delete application o k response has a 4xx status code

func (*DeleteApplicationOK) IsCode

func (o *DeleteApplicationOK) IsCode(code int) bool

IsCode returns true when this delete application o k response a status code equal to that given

func (*DeleteApplicationOK) IsRedirect

func (o *DeleteApplicationOK) IsRedirect() bool

IsRedirect returns true when this delete application o k response has a 3xx status code

func (*DeleteApplicationOK) IsServerError

func (o *DeleteApplicationOK) IsServerError() bool

IsServerError returns true when this delete application o k response has a 5xx status code

func (*DeleteApplicationOK) IsSuccess

func (o *DeleteApplicationOK) IsSuccess() bool

IsSuccess returns true when this delete application o k response has a 2xx status code

func (*DeleteApplicationOK) String

func (o *DeleteApplicationOK) String() string

type DeleteApplicationParams

type DeleteApplicationParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   name of application
	*/
	AppName string

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

DeleteApplicationParams contains all the parameters to send to the API endpoint

for the delete application operation.

Typically these are written to a http.Request.

func NewDeleteApplicationParams

func NewDeleteApplicationParams() *DeleteApplicationParams

NewDeleteApplicationParams creates a new DeleteApplicationParams 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 NewDeleteApplicationParamsWithContext

func NewDeleteApplicationParamsWithContext(ctx context.Context) *DeleteApplicationParams

NewDeleteApplicationParamsWithContext creates a new DeleteApplicationParams object with the ability to set a context for a request.

func NewDeleteApplicationParamsWithHTTPClient

func NewDeleteApplicationParamsWithHTTPClient(client *http.Client) *DeleteApplicationParams

NewDeleteApplicationParamsWithHTTPClient creates a new DeleteApplicationParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteApplicationParamsWithTimeout

func NewDeleteApplicationParamsWithTimeout(timeout time.Duration) *DeleteApplicationParams

NewDeleteApplicationParamsWithTimeout creates a new DeleteApplicationParams object with the ability to set a timeout on a request.

func (*DeleteApplicationParams) SetAppName

func (o *DeleteApplicationParams) SetAppName(appName string)

SetAppName adds the appName to the delete application params

func (*DeleteApplicationParams) SetContext

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

SetContext adds the context to the delete application params

func (*DeleteApplicationParams) SetDefaults

func (o *DeleteApplicationParams) SetDefaults()

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

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

func (*DeleteApplicationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete application params

func (*DeleteApplicationParams) SetImpersonateGroup

func (o *DeleteApplicationParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the delete application params

func (*DeleteApplicationParams) SetImpersonateUser

func (o *DeleteApplicationParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the delete application params

func (*DeleteApplicationParams) SetTimeout

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

SetTimeout adds the timeout to the delete application params

func (*DeleteApplicationParams) WithAppName

func (o *DeleteApplicationParams) WithAppName(appName string) *DeleteApplicationParams

WithAppName adds the appName to the delete application params

func (*DeleteApplicationParams) WithContext

WithContext adds the context to the delete application params

func (*DeleteApplicationParams) WithDefaults

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

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

func (*DeleteApplicationParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete application params

func (*DeleteApplicationParams) WithImpersonateGroup

func (o *DeleteApplicationParams) WithImpersonateGroup(impersonateGroup *string) *DeleteApplicationParams

WithImpersonateGroup adds the impersonateGroup to the delete application params

func (*DeleteApplicationParams) WithImpersonateUser

func (o *DeleteApplicationParams) WithImpersonateUser(impersonateUser *string) *DeleteApplicationParams

WithImpersonateUser adds the impersonateUser to the delete application params

func (*DeleteApplicationParams) WithTimeout

WithTimeout adds the timeout to the delete application params

func (*DeleteApplicationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteApplicationReader

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

DeleteApplicationReader is a Reader for the DeleteApplication structure.

func (*DeleteApplicationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteApplicationUnauthorized

type DeleteApplicationUnauthorized struct {
}

DeleteApplicationUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewDeleteApplicationUnauthorized

func NewDeleteApplicationUnauthorized() *DeleteApplicationUnauthorized

NewDeleteApplicationUnauthorized creates a DeleteApplicationUnauthorized with default headers values

func (*DeleteApplicationUnauthorized) Code

Code gets the status code for the delete application unauthorized response

func (*DeleteApplicationUnauthorized) Error

func (*DeleteApplicationUnauthorized) IsClientError

func (o *DeleteApplicationUnauthorized) IsClientError() bool

IsClientError returns true when this delete application unauthorized response has a 4xx status code

func (*DeleteApplicationUnauthorized) IsCode

func (o *DeleteApplicationUnauthorized) IsCode(code int) bool

IsCode returns true when this delete application unauthorized response a status code equal to that given

func (*DeleteApplicationUnauthorized) IsRedirect

func (o *DeleteApplicationUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete application unauthorized response has a 3xx status code

func (*DeleteApplicationUnauthorized) IsServerError

func (o *DeleteApplicationUnauthorized) IsServerError() bool

IsServerError returns true when this delete application unauthorized response has a 5xx status code

func (*DeleteApplicationUnauthorized) IsSuccess

func (o *DeleteApplicationUnauthorized) IsSuccess() bool

IsSuccess returns true when this delete application unauthorized response has a 2xx status code

func (*DeleteApplicationUnauthorized) String

type DisableApplicationAlertingBadRequest

type DisableApplicationAlertingBadRequest struct {
}

DisableApplicationAlertingBadRequest describes a response with status code 400, with default header values.

Alerting already enabled

func NewDisableApplicationAlertingBadRequest

func NewDisableApplicationAlertingBadRequest() *DisableApplicationAlertingBadRequest

NewDisableApplicationAlertingBadRequest creates a DisableApplicationAlertingBadRequest with default headers values

func (*DisableApplicationAlertingBadRequest) Code

Code gets the status code for the disable application alerting bad request response

func (*DisableApplicationAlertingBadRequest) Error

func (*DisableApplicationAlertingBadRequest) IsClientError

func (o *DisableApplicationAlertingBadRequest) IsClientError() bool

IsClientError returns true when this disable application alerting bad request response has a 4xx status code

func (*DisableApplicationAlertingBadRequest) IsCode

IsCode returns true when this disable application alerting bad request response a status code equal to that given

func (*DisableApplicationAlertingBadRequest) IsRedirect

IsRedirect returns true when this disable application alerting bad request response has a 3xx status code

func (*DisableApplicationAlertingBadRequest) IsServerError

func (o *DisableApplicationAlertingBadRequest) IsServerError() bool

IsServerError returns true when this disable application alerting bad request response has a 5xx status code

func (*DisableApplicationAlertingBadRequest) IsSuccess

IsSuccess returns true when this disable application alerting bad request response has a 2xx status code

func (*DisableApplicationAlertingBadRequest) String

type DisableApplicationAlertingForbidden

type DisableApplicationAlertingForbidden struct {
}

DisableApplicationAlertingForbidden describes a response with status code 403, with default header values.

Forbidden

func NewDisableApplicationAlertingForbidden

func NewDisableApplicationAlertingForbidden() *DisableApplicationAlertingForbidden

NewDisableApplicationAlertingForbidden creates a DisableApplicationAlertingForbidden with default headers values

func (*DisableApplicationAlertingForbidden) Code

Code gets the status code for the disable application alerting forbidden response

func (*DisableApplicationAlertingForbidden) Error

func (*DisableApplicationAlertingForbidden) IsClientError

func (o *DisableApplicationAlertingForbidden) IsClientError() bool

IsClientError returns true when this disable application alerting forbidden response has a 4xx status code

func (*DisableApplicationAlertingForbidden) IsCode

IsCode returns true when this disable application alerting forbidden response a status code equal to that given

func (*DisableApplicationAlertingForbidden) IsRedirect

func (o *DisableApplicationAlertingForbidden) IsRedirect() bool

IsRedirect returns true when this disable application alerting forbidden response has a 3xx status code

func (*DisableApplicationAlertingForbidden) IsServerError

func (o *DisableApplicationAlertingForbidden) IsServerError() bool

IsServerError returns true when this disable application alerting forbidden response has a 5xx status code

func (*DisableApplicationAlertingForbidden) IsSuccess

IsSuccess returns true when this disable application alerting forbidden response has a 2xx status code

func (*DisableApplicationAlertingForbidden) String

type DisableApplicationAlertingInternalServerError

type DisableApplicationAlertingInternalServerError struct {
}

DisableApplicationAlertingInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewDisableApplicationAlertingInternalServerError

func NewDisableApplicationAlertingInternalServerError() *DisableApplicationAlertingInternalServerError

NewDisableApplicationAlertingInternalServerError creates a DisableApplicationAlertingInternalServerError with default headers values

func (*DisableApplicationAlertingInternalServerError) Code

Code gets the status code for the disable application alerting internal server error response

func (*DisableApplicationAlertingInternalServerError) Error

func (*DisableApplicationAlertingInternalServerError) IsClientError

IsClientError returns true when this disable application alerting internal server error response has a 4xx status code

func (*DisableApplicationAlertingInternalServerError) IsCode

IsCode returns true when this disable application alerting internal server error response a status code equal to that given

func (*DisableApplicationAlertingInternalServerError) IsRedirect

IsRedirect returns true when this disable application alerting internal server error response has a 3xx status code

func (*DisableApplicationAlertingInternalServerError) IsServerError

IsServerError returns true when this disable application alerting internal server error response has a 5xx status code

func (*DisableApplicationAlertingInternalServerError) IsSuccess

IsSuccess returns true when this disable application alerting internal server error response has a 2xx status code

func (*DisableApplicationAlertingInternalServerError) String

type DisableApplicationAlertingNotFound

type DisableApplicationAlertingNotFound struct {
}

DisableApplicationAlertingNotFound describes a response with status code 404, with default header values.

Not found

func NewDisableApplicationAlertingNotFound

func NewDisableApplicationAlertingNotFound() *DisableApplicationAlertingNotFound

NewDisableApplicationAlertingNotFound creates a DisableApplicationAlertingNotFound with default headers values

func (*DisableApplicationAlertingNotFound) Code

Code gets the status code for the disable application alerting not found response

func (*DisableApplicationAlertingNotFound) Error

func (*DisableApplicationAlertingNotFound) IsClientError

func (o *DisableApplicationAlertingNotFound) IsClientError() bool

IsClientError returns true when this disable application alerting not found response has a 4xx status code

func (*DisableApplicationAlertingNotFound) IsCode

IsCode returns true when this disable application alerting not found response a status code equal to that given

func (*DisableApplicationAlertingNotFound) IsRedirect

func (o *DisableApplicationAlertingNotFound) IsRedirect() bool

IsRedirect returns true when this disable application alerting not found response has a 3xx status code

func (*DisableApplicationAlertingNotFound) IsServerError

func (o *DisableApplicationAlertingNotFound) IsServerError() bool

IsServerError returns true when this disable application alerting not found response has a 5xx status code

func (*DisableApplicationAlertingNotFound) IsSuccess

IsSuccess returns true when this disable application alerting not found response has a 2xx status code

func (*DisableApplicationAlertingNotFound) String

type DisableApplicationAlertingOK

type DisableApplicationAlertingOK struct {
	Payload *models.AlertingConfig
}

DisableApplicationAlertingOK describes a response with status code 200, with default header values.

Successful disable alerting

func NewDisableApplicationAlertingOK

func NewDisableApplicationAlertingOK() *DisableApplicationAlertingOK

NewDisableApplicationAlertingOK creates a DisableApplicationAlertingOK with default headers values

func (*DisableApplicationAlertingOK) Code

Code gets the status code for the disable application alerting o k response

func (*DisableApplicationAlertingOK) Error

func (*DisableApplicationAlertingOK) GetPayload

func (*DisableApplicationAlertingOK) IsClientError

func (o *DisableApplicationAlertingOK) IsClientError() bool

IsClientError returns true when this disable application alerting o k response has a 4xx status code

func (*DisableApplicationAlertingOK) IsCode

func (o *DisableApplicationAlertingOK) IsCode(code int) bool

IsCode returns true when this disable application alerting o k response a status code equal to that given

func (*DisableApplicationAlertingOK) IsRedirect

func (o *DisableApplicationAlertingOK) IsRedirect() bool

IsRedirect returns true when this disable application alerting o k response has a 3xx status code

func (*DisableApplicationAlertingOK) IsServerError

func (o *DisableApplicationAlertingOK) IsServerError() bool

IsServerError returns true when this disable application alerting o k response has a 5xx status code

func (*DisableApplicationAlertingOK) IsSuccess

func (o *DisableApplicationAlertingOK) IsSuccess() bool

IsSuccess returns true when this disable application alerting o k response has a 2xx status code

func (*DisableApplicationAlertingOK) String

type DisableApplicationAlertingParams

type DisableApplicationAlertingParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

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

DisableApplicationAlertingParams contains all the parameters to send to the API endpoint

for the disable application alerting operation.

Typically these are written to a http.Request.

func NewDisableApplicationAlertingParams

func NewDisableApplicationAlertingParams() *DisableApplicationAlertingParams

NewDisableApplicationAlertingParams creates a new DisableApplicationAlertingParams 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 NewDisableApplicationAlertingParamsWithContext

func NewDisableApplicationAlertingParamsWithContext(ctx context.Context) *DisableApplicationAlertingParams

NewDisableApplicationAlertingParamsWithContext creates a new DisableApplicationAlertingParams object with the ability to set a context for a request.

func NewDisableApplicationAlertingParamsWithHTTPClient

func NewDisableApplicationAlertingParamsWithHTTPClient(client *http.Client) *DisableApplicationAlertingParams

NewDisableApplicationAlertingParamsWithHTTPClient creates a new DisableApplicationAlertingParams object with the ability to set a custom HTTPClient for a request.

func NewDisableApplicationAlertingParamsWithTimeout

func NewDisableApplicationAlertingParamsWithTimeout(timeout time.Duration) *DisableApplicationAlertingParams

NewDisableApplicationAlertingParamsWithTimeout creates a new DisableApplicationAlertingParams object with the ability to set a timeout on a request.

func (*DisableApplicationAlertingParams) SetAppName

func (o *DisableApplicationAlertingParams) SetAppName(appName string)

SetAppName adds the appName to the disable application alerting params

func (*DisableApplicationAlertingParams) SetContext

SetContext adds the context to the disable application alerting params

func (*DisableApplicationAlertingParams) SetDefaults

func (o *DisableApplicationAlertingParams) SetDefaults()

SetDefaults hydrates default values in the disable application alerting params (not the query body).

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

func (*DisableApplicationAlertingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the disable application alerting params

func (*DisableApplicationAlertingParams) SetImpersonateGroup

func (o *DisableApplicationAlertingParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the disable application alerting params

func (*DisableApplicationAlertingParams) SetImpersonateUser

func (o *DisableApplicationAlertingParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the disable application alerting params

func (*DisableApplicationAlertingParams) SetTimeout

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

SetTimeout adds the timeout to the disable application alerting params

func (*DisableApplicationAlertingParams) WithAppName

WithAppName adds the appName to the disable application alerting params

func (*DisableApplicationAlertingParams) WithContext

WithContext adds the context to the disable application alerting params

func (*DisableApplicationAlertingParams) WithDefaults

WithDefaults hydrates default values in the disable application alerting params (not the query body).

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

func (*DisableApplicationAlertingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the disable application alerting params

func (*DisableApplicationAlertingParams) WithImpersonateGroup

func (o *DisableApplicationAlertingParams) WithImpersonateGroup(impersonateGroup *string) *DisableApplicationAlertingParams

WithImpersonateGroup adds the impersonateGroup to the disable application alerting params

func (*DisableApplicationAlertingParams) WithImpersonateUser

func (o *DisableApplicationAlertingParams) WithImpersonateUser(impersonateUser *string) *DisableApplicationAlertingParams

WithImpersonateUser adds the impersonateUser to the disable application alerting params

func (*DisableApplicationAlertingParams) WithTimeout

WithTimeout adds the timeout to the disable application alerting params

func (*DisableApplicationAlertingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DisableApplicationAlertingReader

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

DisableApplicationAlertingReader is a Reader for the DisableApplicationAlerting structure.

func (*DisableApplicationAlertingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DisableApplicationAlertingUnauthorized

type DisableApplicationAlertingUnauthorized struct {
}

DisableApplicationAlertingUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewDisableApplicationAlertingUnauthorized

func NewDisableApplicationAlertingUnauthorized() *DisableApplicationAlertingUnauthorized

NewDisableApplicationAlertingUnauthorized creates a DisableApplicationAlertingUnauthorized with default headers values

func (*DisableApplicationAlertingUnauthorized) Code

Code gets the status code for the disable application alerting unauthorized response

func (*DisableApplicationAlertingUnauthorized) Error

func (*DisableApplicationAlertingUnauthorized) IsClientError

func (o *DisableApplicationAlertingUnauthorized) IsClientError() bool

IsClientError returns true when this disable application alerting unauthorized response has a 4xx status code

func (*DisableApplicationAlertingUnauthorized) IsCode

IsCode returns true when this disable application alerting unauthorized response a status code equal to that given

func (*DisableApplicationAlertingUnauthorized) IsRedirect

IsRedirect returns true when this disable application alerting unauthorized response has a 3xx status code

func (*DisableApplicationAlertingUnauthorized) IsServerError

func (o *DisableApplicationAlertingUnauthorized) IsServerError() bool

IsServerError returns true when this disable application alerting unauthorized response has a 5xx status code

func (*DisableApplicationAlertingUnauthorized) IsSuccess

IsSuccess returns true when this disable application alerting unauthorized response has a 2xx status code

func (*DisableApplicationAlertingUnauthorized) String

type EnableApplicationAlertingBadRequest

type EnableApplicationAlertingBadRequest struct {
}

EnableApplicationAlertingBadRequest describes a response with status code 400, with default header values.

Alerting already enabled

func NewEnableApplicationAlertingBadRequest

func NewEnableApplicationAlertingBadRequest() *EnableApplicationAlertingBadRequest

NewEnableApplicationAlertingBadRequest creates a EnableApplicationAlertingBadRequest with default headers values

func (*EnableApplicationAlertingBadRequest) Code

Code gets the status code for the enable application alerting bad request response

func (*EnableApplicationAlertingBadRequest) Error

func (*EnableApplicationAlertingBadRequest) IsClientError

func (o *EnableApplicationAlertingBadRequest) IsClientError() bool

IsClientError returns true when this enable application alerting bad request response has a 4xx status code

func (*EnableApplicationAlertingBadRequest) IsCode

IsCode returns true when this enable application alerting bad request response a status code equal to that given

func (*EnableApplicationAlertingBadRequest) IsRedirect

func (o *EnableApplicationAlertingBadRequest) IsRedirect() bool

IsRedirect returns true when this enable application alerting bad request response has a 3xx status code

func (*EnableApplicationAlertingBadRequest) IsServerError

func (o *EnableApplicationAlertingBadRequest) IsServerError() bool

IsServerError returns true when this enable application alerting bad request response has a 5xx status code

func (*EnableApplicationAlertingBadRequest) IsSuccess

IsSuccess returns true when this enable application alerting bad request response has a 2xx status code

func (*EnableApplicationAlertingBadRequest) String

type EnableApplicationAlertingForbidden

type EnableApplicationAlertingForbidden struct {
}

EnableApplicationAlertingForbidden describes a response with status code 403, with default header values.

Forbidden

func NewEnableApplicationAlertingForbidden

func NewEnableApplicationAlertingForbidden() *EnableApplicationAlertingForbidden

NewEnableApplicationAlertingForbidden creates a EnableApplicationAlertingForbidden with default headers values

func (*EnableApplicationAlertingForbidden) Code

Code gets the status code for the enable application alerting forbidden response

func (*EnableApplicationAlertingForbidden) Error

func (*EnableApplicationAlertingForbidden) IsClientError

func (o *EnableApplicationAlertingForbidden) IsClientError() bool

IsClientError returns true when this enable application alerting forbidden response has a 4xx status code

func (*EnableApplicationAlertingForbidden) IsCode

IsCode returns true when this enable application alerting forbidden response a status code equal to that given

func (*EnableApplicationAlertingForbidden) IsRedirect

func (o *EnableApplicationAlertingForbidden) IsRedirect() bool

IsRedirect returns true when this enable application alerting forbidden response has a 3xx status code

func (*EnableApplicationAlertingForbidden) IsServerError

func (o *EnableApplicationAlertingForbidden) IsServerError() bool

IsServerError returns true when this enable application alerting forbidden response has a 5xx status code

func (*EnableApplicationAlertingForbidden) IsSuccess

IsSuccess returns true when this enable application alerting forbidden response has a 2xx status code

func (*EnableApplicationAlertingForbidden) String

type EnableApplicationAlertingInternalServerError

type EnableApplicationAlertingInternalServerError struct {
}

EnableApplicationAlertingInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewEnableApplicationAlertingInternalServerError

func NewEnableApplicationAlertingInternalServerError() *EnableApplicationAlertingInternalServerError

NewEnableApplicationAlertingInternalServerError creates a EnableApplicationAlertingInternalServerError with default headers values

func (*EnableApplicationAlertingInternalServerError) Code

Code gets the status code for the enable application alerting internal server error response

func (*EnableApplicationAlertingInternalServerError) Error

func (*EnableApplicationAlertingInternalServerError) IsClientError

IsClientError returns true when this enable application alerting internal server error response has a 4xx status code

func (*EnableApplicationAlertingInternalServerError) IsCode

IsCode returns true when this enable application alerting internal server error response a status code equal to that given

func (*EnableApplicationAlertingInternalServerError) IsRedirect

IsRedirect returns true when this enable application alerting internal server error response has a 3xx status code

func (*EnableApplicationAlertingInternalServerError) IsServerError

IsServerError returns true when this enable application alerting internal server error response has a 5xx status code

func (*EnableApplicationAlertingInternalServerError) IsSuccess

IsSuccess returns true when this enable application alerting internal server error response has a 2xx status code

func (*EnableApplicationAlertingInternalServerError) String

type EnableApplicationAlertingNotFound

type EnableApplicationAlertingNotFound struct {
}

EnableApplicationAlertingNotFound describes a response with status code 404, with default header values.

Not found

func NewEnableApplicationAlertingNotFound

func NewEnableApplicationAlertingNotFound() *EnableApplicationAlertingNotFound

NewEnableApplicationAlertingNotFound creates a EnableApplicationAlertingNotFound with default headers values

func (*EnableApplicationAlertingNotFound) Code

Code gets the status code for the enable application alerting not found response

func (*EnableApplicationAlertingNotFound) Error

func (*EnableApplicationAlertingNotFound) IsClientError

func (o *EnableApplicationAlertingNotFound) IsClientError() bool

IsClientError returns true when this enable application alerting not found response has a 4xx status code

func (*EnableApplicationAlertingNotFound) IsCode

func (o *EnableApplicationAlertingNotFound) IsCode(code int) bool

IsCode returns true when this enable application alerting not found response a status code equal to that given

func (*EnableApplicationAlertingNotFound) IsRedirect

func (o *EnableApplicationAlertingNotFound) IsRedirect() bool

IsRedirect returns true when this enable application alerting not found response has a 3xx status code

func (*EnableApplicationAlertingNotFound) IsServerError

func (o *EnableApplicationAlertingNotFound) IsServerError() bool

IsServerError returns true when this enable application alerting not found response has a 5xx status code

func (*EnableApplicationAlertingNotFound) IsSuccess

func (o *EnableApplicationAlertingNotFound) IsSuccess() bool

IsSuccess returns true when this enable application alerting not found response has a 2xx status code

func (*EnableApplicationAlertingNotFound) String

type EnableApplicationAlertingOK

type EnableApplicationAlertingOK struct {
	Payload *models.AlertingConfig
}

EnableApplicationAlertingOK describes a response with status code 200, with default header values.

Successful enable alerting

func NewEnableApplicationAlertingOK

func NewEnableApplicationAlertingOK() *EnableApplicationAlertingOK

NewEnableApplicationAlertingOK creates a EnableApplicationAlertingOK with default headers values

func (*EnableApplicationAlertingOK) Code

func (o *EnableApplicationAlertingOK) Code() int

Code gets the status code for the enable application alerting o k response

func (*EnableApplicationAlertingOK) Error

func (*EnableApplicationAlertingOK) GetPayload

func (*EnableApplicationAlertingOK) IsClientError

func (o *EnableApplicationAlertingOK) IsClientError() bool

IsClientError returns true when this enable application alerting o k response has a 4xx status code

func (*EnableApplicationAlertingOK) IsCode

func (o *EnableApplicationAlertingOK) IsCode(code int) bool

IsCode returns true when this enable application alerting o k response a status code equal to that given

func (*EnableApplicationAlertingOK) IsRedirect

func (o *EnableApplicationAlertingOK) IsRedirect() bool

IsRedirect returns true when this enable application alerting o k response has a 3xx status code

func (*EnableApplicationAlertingOK) IsServerError

func (o *EnableApplicationAlertingOK) IsServerError() bool

IsServerError returns true when this enable application alerting o k response has a 5xx status code

func (*EnableApplicationAlertingOK) IsSuccess

func (o *EnableApplicationAlertingOK) IsSuccess() bool

IsSuccess returns true when this enable application alerting o k response has a 2xx status code

func (*EnableApplicationAlertingOK) String

func (o *EnableApplicationAlertingOK) String() string

type EnableApplicationAlertingParams

type EnableApplicationAlertingParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

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

EnableApplicationAlertingParams contains all the parameters to send to the API endpoint

for the enable application alerting operation.

Typically these are written to a http.Request.

func NewEnableApplicationAlertingParams

func NewEnableApplicationAlertingParams() *EnableApplicationAlertingParams

NewEnableApplicationAlertingParams creates a new EnableApplicationAlertingParams 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 NewEnableApplicationAlertingParamsWithContext

func NewEnableApplicationAlertingParamsWithContext(ctx context.Context) *EnableApplicationAlertingParams

NewEnableApplicationAlertingParamsWithContext creates a new EnableApplicationAlertingParams object with the ability to set a context for a request.

func NewEnableApplicationAlertingParamsWithHTTPClient

func NewEnableApplicationAlertingParamsWithHTTPClient(client *http.Client) *EnableApplicationAlertingParams

NewEnableApplicationAlertingParamsWithHTTPClient creates a new EnableApplicationAlertingParams object with the ability to set a custom HTTPClient for a request.

func NewEnableApplicationAlertingParamsWithTimeout

func NewEnableApplicationAlertingParamsWithTimeout(timeout time.Duration) *EnableApplicationAlertingParams

NewEnableApplicationAlertingParamsWithTimeout creates a new EnableApplicationAlertingParams object with the ability to set a timeout on a request.

func (*EnableApplicationAlertingParams) SetAppName

func (o *EnableApplicationAlertingParams) SetAppName(appName string)

SetAppName adds the appName to the enable application alerting params

func (*EnableApplicationAlertingParams) SetContext

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

SetContext adds the context to the enable application alerting params

func (*EnableApplicationAlertingParams) SetDefaults

func (o *EnableApplicationAlertingParams) SetDefaults()

SetDefaults hydrates default values in the enable application alerting params (not the query body).

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

func (*EnableApplicationAlertingParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the enable application alerting params

func (*EnableApplicationAlertingParams) SetImpersonateGroup

func (o *EnableApplicationAlertingParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the enable application alerting params

func (*EnableApplicationAlertingParams) SetImpersonateUser

func (o *EnableApplicationAlertingParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the enable application alerting params

func (*EnableApplicationAlertingParams) SetTimeout

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

SetTimeout adds the timeout to the enable application alerting params

func (*EnableApplicationAlertingParams) WithAppName

WithAppName adds the appName to the enable application alerting params

func (*EnableApplicationAlertingParams) WithContext

WithContext adds the context to the enable application alerting params

func (*EnableApplicationAlertingParams) WithDefaults

WithDefaults hydrates default values in the enable application alerting params (not the query body).

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

func (*EnableApplicationAlertingParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the enable application alerting params

func (*EnableApplicationAlertingParams) WithImpersonateGroup

func (o *EnableApplicationAlertingParams) WithImpersonateGroup(impersonateGroup *string) *EnableApplicationAlertingParams

WithImpersonateGroup adds the impersonateGroup to the enable application alerting params

func (*EnableApplicationAlertingParams) WithImpersonateUser

func (o *EnableApplicationAlertingParams) WithImpersonateUser(impersonateUser *string) *EnableApplicationAlertingParams

WithImpersonateUser adds the impersonateUser to the enable application alerting params

func (*EnableApplicationAlertingParams) WithTimeout

WithTimeout adds the timeout to the enable application alerting params

func (*EnableApplicationAlertingParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type EnableApplicationAlertingReader

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

EnableApplicationAlertingReader is a Reader for the EnableApplicationAlerting structure.

func (*EnableApplicationAlertingReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type EnableApplicationAlertingUnauthorized

type EnableApplicationAlertingUnauthorized struct {
}

EnableApplicationAlertingUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewEnableApplicationAlertingUnauthorized

func NewEnableApplicationAlertingUnauthorized() *EnableApplicationAlertingUnauthorized

NewEnableApplicationAlertingUnauthorized creates a EnableApplicationAlertingUnauthorized with default headers values

func (*EnableApplicationAlertingUnauthorized) Code

Code gets the status code for the enable application alerting unauthorized response

func (*EnableApplicationAlertingUnauthorized) Error

func (*EnableApplicationAlertingUnauthorized) IsClientError

func (o *EnableApplicationAlertingUnauthorized) IsClientError() bool

IsClientError returns true when this enable application alerting unauthorized response has a 4xx status code

func (*EnableApplicationAlertingUnauthorized) IsCode

IsCode returns true when this enable application alerting unauthorized response a status code equal to that given

func (*EnableApplicationAlertingUnauthorized) IsRedirect

IsRedirect returns true when this enable application alerting unauthorized response has a 3xx status code

func (*EnableApplicationAlertingUnauthorized) IsServerError

func (o *EnableApplicationAlertingUnauthorized) IsServerError() bool

IsServerError returns true when this enable application alerting unauthorized response has a 5xx status code

func (*EnableApplicationAlertingUnauthorized) IsSuccess

IsSuccess returns true when this enable application alerting unauthorized response has a 2xx status code

func (*EnableApplicationAlertingUnauthorized) String

type GetApplicationAlertingConfigForbidden

type GetApplicationAlertingConfigForbidden struct {
}

GetApplicationAlertingConfigForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetApplicationAlertingConfigForbidden

func NewGetApplicationAlertingConfigForbidden() *GetApplicationAlertingConfigForbidden

NewGetApplicationAlertingConfigForbidden creates a GetApplicationAlertingConfigForbidden with default headers values

func (*GetApplicationAlertingConfigForbidden) Code

Code gets the status code for the get application alerting config forbidden response

func (*GetApplicationAlertingConfigForbidden) Error

func (*GetApplicationAlertingConfigForbidden) IsClientError

func (o *GetApplicationAlertingConfigForbidden) IsClientError() bool

IsClientError returns true when this get application alerting config forbidden response has a 4xx status code

func (*GetApplicationAlertingConfigForbidden) IsCode

IsCode returns true when this get application alerting config forbidden response a status code equal to that given

func (*GetApplicationAlertingConfigForbidden) IsRedirect

IsRedirect returns true when this get application alerting config forbidden response has a 3xx status code

func (*GetApplicationAlertingConfigForbidden) IsServerError

func (o *GetApplicationAlertingConfigForbidden) IsServerError() bool

IsServerError returns true when this get application alerting config forbidden response has a 5xx status code

func (*GetApplicationAlertingConfigForbidden) IsSuccess

IsSuccess returns true when this get application alerting config forbidden response has a 2xx status code

func (*GetApplicationAlertingConfigForbidden) String

type GetApplicationAlertingConfigInternalServerError

type GetApplicationAlertingConfigInternalServerError struct {
}

GetApplicationAlertingConfigInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGetApplicationAlertingConfigInternalServerError

func NewGetApplicationAlertingConfigInternalServerError() *GetApplicationAlertingConfigInternalServerError

NewGetApplicationAlertingConfigInternalServerError creates a GetApplicationAlertingConfigInternalServerError with default headers values

func (*GetApplicationAlertingConfigInternalServerError) Code

Code gets the status code for the get application alerting config internal server error response

func (*GetApplicationAlertingConfigInternalServerError) Error

func (*GetApplicationAlertingConfigInternalServerError) IsClientError

IsClientError returns true when this get application alerting config internal server error response has a 4xx status code

func (*GetApplicationAlertingConfigInternalServerError) IsCode

IsCode returns true when this get application alerting config internal server error response a status code equal to that given

func (*GetApplicationAlertingConfigInternalServerError) IsRedirect

IsRedirect returns true when this get application alerting config internal server error response has a 3xx status code

func (*GetApplicationAlertingConfigInternalServerError) IsServerError

IsServerError returns true when this get application alerting config internal server error response has a 5xx status code

func (*GetApplicationAlertingConfigInternalServerError) IsSuccess

IsSuccess returns true when this get application alerting config internal server error response has a 2xx status code

func (*GetApplicationAlertingConfigInternalServerError) String

type GetApplicationAlertingConfigNotFound

type GetApplicationAlertingConfigNotFound struct {
}

GetApplicationAlertingConfigNotFound describes a response with status code 404, with default header values.

Not found

func NewGetApplicationAlertingConfigNotFound

func NewGetApplicationAlertingConfigNotFound() *GetApplicationAlertingConfigNotFound

NewGetApplicationAlertingConfigNotFound creates a GetApplicationAlertingConfigNotFound with default headers values

func (*GetApplicationAlertingConfigNotFound) Code

Code gets the status code for the get application alerting config not found response

func (*GetApplicationAlertingConfigNotFound) Error

func (*GetApplicationAlertingConfigNotFound) IsClientError

func (o *GetApplicationAlertingConfigNotFound) IsClientError() bool

IsClientError returns true when this get application alerting config not found response has a 4xx status code

func (*GetApplicationAlertingConfigNotFound) IsCode

IsCode returns true when this get application alerting config not found response a status code equal to that given

func (*GetApplicationAlertingConfigNotFound) IsRedirect

IsRedirect returns true when this get application alerting config not found response has a 3xx status code

func (*GetApplicationAlertingConfigNotFound) IsServerError

func (o *GetApplicationAlertingConfigNotFound) IsServerError() bool

IsServerError returns true when this get application alerting config not found response has a 5xx status code

func (*GetApplicationAlertingConfigNotFound) IsSuccess

IsSuccess returns true when this get application alerting config not found response has a 2xx status code

func (*GetApplicationAlertingConfigNotFound) String

type GetApplicationAlertingConfigOK

type GetApplicationAlertingConfigOK struct {
	Payload *models.AlertingConfig
}

GetApplicationAlertingConfigOK describes a response with status code 200, with default header values.

Successful get alerts config

func NewGetApplicationAlertingConfigOK

func NewGetApplicationAlertingConfigOK() *GetApplicationAlertingConfigOK

NewGetApplicationAlertingConfigOK creates a GetApplicationAlertingConfigOK with default headers values

func (*GetApplicationAlertingConfigOK) Code

Code gets the status code for the get application alerting config o k response

func (*GetApplicationAlertingConfigOK) Error

func (*GetApplicationAlertingConfigOK) GetPayload

func (*GetApplicationAlertingConfigOK) IsClientError

func (o *GetApplicationAlertingConfigOK) IsClientError() bool

IsClientError returns true when this get application alerting config o k response has a 4xx status code

func (*GetApplicationAlertingConfigOK) IsCode

func (o *GetApplicationAlertingConfigOK) IsCode(code int) bool

IsCode returns true when this get application alerting config o k response a status code equal to that given

func (*GetApplicationAlertingConfigOK) IsRedirect

func (o *GetApplicationAlertingConfigOK) IsRedirect() bool

IsRedirect returns true when this get application alerting config o k response has a 3xx status code

func (*GetApplicationAlertingConfigOK) IsServerError

func (o *GetApplicationAlertingConfigOK) IsServerError() bool

IsServerError returns true when this get application alerting config o k response has a 5xx status code

func (*GetApplicationAlertingConfigOK) IsSuccess

func (o *GetApplicationAlertingConfigOK) IsSuccess() bool

IsSuccess returns true when this get application alerting config o k response has a 2xx status code

func (*GetApplicationAlertingConfigOK) String

type GetApplicationAlertingConfigParams

type GetApplicationAlertingConfigParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

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

GetApplicationAlertingConfigParams contains all the parameters to send to the API endpoint

for the get application alerting config operation.

Typically these are written to a http.Request.

func NewGetApplicationAlertingConfigParams

func NewGetApplicationAlertingConfigParams() *GetApplicationAlertingConfigParams

NewGetApplicationAlertingConfigParams creates a new GetApplicationAlertingConfigParams 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 NewGetApplicationAlertingConfigParamsWithContext

func NewGetApplicationAlertingConfigParamsWithContext(ctx context.Context) *GetApplicationAlertingConfigParams

NewGetApplicationAlertingConfigParamsWithContext creates a new GetApplicationAlertingConfigParams object with the ability to set a context for a request.

func NewGetApplicationAlertingConfigParamsWithHTTPClient

func NewGetApplicationAlertingConfigParamsWithHTTPClient(client *http.Client) *GetApplicationAlertingConfigParams

NewGetApplicationAlertingConfigParamsWithHTTPClient creates a new GetApplicationAlertingConfigParams object with the ability to set a custom HTTPClient for a request.

func NewGetApplicationAlertingConfigParamsWithTimeout

func NewGetApplicationAlertingConfigParamsWithTimeout(timeout time.Duration) *GetApplicationAlertingConfigParams

NewGetApplicationAlertingConfigParamsWithTimeout creates a new GetApplicationAlertingConfigParams object with the ability to set a timeout on a request.

func (*GetApplicationAlertingConfigParams) SetAppName

func (o *GetApplicationAlertingConfigParams) SetAppName(appName string)

SetAppName adds the appName to the get application alerting config params

func (*GetApplicationAlertingConfigParams) SetContext

SetContext adds the context to the get application alerting config params

func (*GetApplicationAlertingConfigParams) SetDefaults

func (o *GetApplicationAlertingConfigParams) SetDefaults()

SetDefaults hydrates default values in the get application alerting config params (not the query body).

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

func (*GetApplicationAlertingConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get application alerting config params

func (*GetApplicationAlertingConfigParams) SetImpersonateGroup

func (o *GetApplicationAlertingConfigParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the get application alerting config params

func (*GetApplicationAlertingConfigParams) SetImpersonateUser

func (o *GetApplicationAlertingConfigParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the get application alerting config params

func (*GetApplicationAlertingConfigParams) SetTimeout

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

SetTimeout adds the timeout to the get application alerting config params

func (*GetApplicationAlertingConfigParams) WithAppName

WithAppName adds the appName to the get application alerting config params

func (*GetApplicationAlertingConfigParams) WithContext

WithContext adds the context to the get application alerting config params

func (*GetApplicationAlertingConfigParams) WithDefaults

WithDefaults hydrates default values in the get application alerting config params (not the query body).

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

func (*GetApplicationAlertingConfigParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get application alerting config params

func (*GetApplicationAlertingConfigParams) WithImpersonateGroup

func (o *GetApplicationAlertingConfigParams) WithImpersonateGroup(impersonateGroup *string) *GetApplicationAlertingConfigParams

WithImpersonateGroup adds the impersonateGroup to the get application alerting config params

func (*GetApplicationAlertingConfigParams) WithImpersonateUser

func (o *GetApplicationAlertingConfigParams) WithImpersonateUser(impersonateUser *string) *GetApplicationAlertingConfigParams

WithImpersonateUser adds the impersonateUser to the get application alerting config params

func (*GetApplicationAlertingConfigParams) WithTimeout

WithTimeout adds the timeout to the get application alerting config params

func (*GetApplicationAlertingConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetApplicationAlertingConfigReader

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

GetApplicationAlertingConfigReader is a Reader for the GetApplicationAlertingConfig structure.

func (*GetApplicationAlertingConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetApplicationAlertingConfigUnauthorized

type GetApplicationAlertingConfigUnauthorized struct {
}

GetApplicationAlertingConfigUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetApplicationAlertingConfigUnauthorized

func NewGetApplicationAlertingConfigUnauthorized() *GetApplicationAlertingConfigUnauthorized

NewGetApplicationAlertingConfigUnauthorized creates a GetApplicationAlertingConfigUnauthorized with default headers values

func (*GetApplicationAlertingConfigUnauthorized) Code

Code gets the status code for the get application alerting config unauthorized response

func (*GetApplicationAlertingConfigUnauthorized) Error

func (*GetApplicationAlertingConfigUnauthorized) IsClientError

IsClientError returns true when this get application alerting config unauthorized response has a 4xx status code

func (*GetApplicationAlertingConfigUnauthorized) IsCode

IsCode returns true when this get application alerting config unauthorized response a status code equal to that given

func (*GetApplicationAlertingConfigUnauthorized) IsRedirect

IsRedirect returns true when this get application alerting config unauthorized response has a 3xx status code

func (*GetApplicationAlertingConfigUnauthorized) IsServerError

IsServerError returns true when this get application alerting config unauthorized response has a 5xx status code

func (*GetApplicationAlertingConfigUnauthorized) IsSuccess

IsSuccess returns true when this get application alerting config unauthorized response has a 2xx status code

func (*GetApplicationAlertingConfigUnauthorized) String

type GetApplicationConflict

type GetApplicationConflict struct {
}

GetApplicationConflict describes a response with status code 409, with default header values.

Conflict

func NewGetApplicationConflict

func NewGetApplicationConflict() *GetApplicationConflict

NewGetApplicationConflict creates a GetApplicationConflict with default headers values

func (*GetApplicationConflict) Code

func (o *GetApplicationConflict) Code() int

Code gets the status code for the get application conflict response

func (*GetApplicationConflict) Error

func (o *GetApplicationConflict) Error() string

func (*GetApplicationConflict) IsClientError

func (o *GetApplicationConflict) IsClientError() bool

IsClientError returns true when this get application conflict response has a 4xx status code

func (*GetApplicationConflict) IsCode

func (o *GetApplicationConflict) IsCode(code int) bool

IsCode returns true when this get application conflict response a status code equal to that given

func (*GetApplicationConflict) IsRedirect

func (o *GetApplicationConflict) IsRedirect() bool

IsRedirect returns true when this get application conflict response has a 3xx status code

func (*GetApplicationConflict) IsServerError

func (o *GetApplicationConflict) IsServerError() bool

IsServerError returns true when this get application conflict response has a 5xx status code

func (*GetApplicationConflict) IsSuccess

func (o *GetApplicationConflict) IsSuccess() bool

IsSuccess returns true when this get application conflict response has a 2xx status code

func (*GetApplicationConflict) String

func (o *GetApplicationConflict) String() string

type GetApplicationForbidden

type GetApplicationForbidden struct {
}

GetApplicationForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetApplicationForbidden

func NewGetApplicationForbidden() *GetApplicationForbidden

NewGetApplicationForbidden creates a GetApplicationForbidden with default headers values

func (*GetApplicationForbidden) Code

func (o *GetApplicationForbidden) Code() int

Code gets the status code for the get application forbidden response

func (*GetApplicationForbidden) Error

func (o *GetApplicationForbidden) Error() string

func (*GetApplicationForbidden) IsClientError

func (o *GetApplicationForbidden) IsClientError() bool

IsClientError returns true when this get application forbidden response has a 4xx status code

func (*GetApplicationForbidden) IsCode

func (o *GetApplicationForbidden) IsCode(code int) bool

IsCode returns true when this get application forbidden response a status code equal to that given

func (*GetApplicationForbidden) IsRedirect

func (o *GetApplicationForbidden) IsRedirect() bool

IsRedirect returns true when this get application forbidden response has a 3xx status code

func (*GetApplicationForbidden) IsServerError

func (o *GetApplicationForbidden) IsServerError() bool

IsServerError returns true when this get application forbidden response has a 5xx status code

func (*GetApplicationForbidden) IsSuccess

func (o *GetApplicationForbidden) IsSuccess() bool

IsSuccess returns true when this get application forbidden response has a 2xx status code

func (*GetApplicationForbidden) String

func (o *GetApplicationForbidden) String() string

type GetApplicationInternalServerError

type GetApplicationInternalServerError struct {
}

GetApplicationInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGetApplicationInternalServerError

func NewGetApplicationInternalServerError() *GetApplicationInternalServerError

NewGetApplicationInternalServerError creates a GetApplicationInternalServerError with default headers values

func (*GetApplicationInternalServerError) Code

Code gets the status code for the get application internal server error response

func (*GetApplicationInternalServerError) Error

func (*GetApplicationInternalServerError) IsClientError

func (o *GetApplicationInternalServerError) IsClientError() bool

IsClientError returns true when this get application internal server error response has a 4xx status code

func (*GetApplicationInternalServerError) IsCode

func (o *GetApplicationInternalServerError) IsCode(code int) bool

IsCode returns true when this get application internal server error response a status code equal to that given

func (*GetApplicationInternalServerError) IsRedirect

func (o *GetApplicationInternalServerError) IsRedirect() bool

IsRedirect returns true when this get application internal server error response has a 3xx status code

func (*GetApplicationInternalServerError) IsServerError

func (o *GetApplicationInternalServerError) IsServerError() bool

IsServerError returns true when this get application internal server error response has a 5xx status code

func (*GetApplicationInternalServerError) IsSuccess

func (o *GetApplicationInternalServerError) IsSuccess() bool

IsSuccess returns true when this get application internal server error response has a 2xx status code

func (*GetApplicationInternalServerError) String

type GetApplicationNotFound

type GetApplicationNotFound struct {
}

GetApplicationNotFound describes a response with status code 404, with default header values.

Not found

func NewGetApplicationNotFound

func NewGetApplicationNotFound() *GetApplicationNotFound

NewGetApplicationNotFound creates a GetApplicationNotFound with default headers values

func (*GetApplicationNotFound) Code

func (o *GetApplicationNotFound) Code() int

Code gets the status code for the get application not found response

func (*GetApplicationNotFound) Error

func (o *GetApplicationNotFound) Error() string

func (*GetApplicationNotFound) IsClientError

func (o *GetApplicationNotFound) IsClientError() bool

IsClientError returns true when this get application not found response has a 4xx status code

func (*GetApplicationNotFound) IsCode

func (o *GetApplicationNotFound) IsCode(code int) bool

IsCode returns true when this get application not found response a status code equal to that given

func (*GetApplicationNotFound) IsRedirect

func (o *GetApplicationNotFound) IsRedirect() bool

IsRedirect returns true when this get application not found response has a 3xx status code

func (*GetApplicationNotFound) IsServerError

func (o *GetApplicationNotFound) IsServerError() bool

IsServerError returns true when this get application not found response has a 5xx status code

func (*GetApplicationNotFound) IsSuccess

func (o *GetApplicationNotFound) IsSuccess() bool

IsSuccess returns true when this get application not found response has a 2xx status code

func (*GetApplicationNotFound) String

func (o *GetApplicationNotFound) String() string

type GetApplicationOK

type GetApplicationOK struct {
	Payload *models.Application
}

GetApplicationOK describes a response with status code 200, with default header values.

Successful get application

func NewGetApplicationOK

func NewGetApplicationOK() *GetApplicationOK

NewGetApplicationOK creates a GetApplicationOK with default headers values

func (*GetApplicationOK) Code

func (o *GetApplicationOK) Code() int

Code gets the status code for the get application o k response

func (*GetApplicationOK) Error

func (o *GetApplicationOK) Error() string

func (*GetApplicationOK) GetPayload

func (o *GetApplicationOK) GetPayload() *models.Application

func (*GetApplicationOK) IsClientError

func (o *GetApplicationOK) IsClientError() bool

IsClientError returns true when this get application o k response has a 4xx status code

func (*GetApplicationOK) IsCode

func (o *GetApplicationOK) IsCode(code int) bool

IsCode returns true when this get application o k response a status code equal to that given

func (*GetApplicationOK) IsRedirect

func (o *GetApplicationOK) IsRedirect() bool

IsRedirect returns true when this get application o k response has a 3xx status code

func (*GetApplicationOK) IsServerError

func (o *GetApplicationOK) IsServerError() bool

IsServerError returns true when this get application o k response has a 5xx status code

func (*GetApplicationOK) IsSuccess

func (o *GetApplicationOK) IsSuccess() bool

IsSuccess returns true when this get application o k response has a 2xx status code

func (*GetApplicationOK) String

func (o *GetApplicationOK) String() string

type GetApplicationParams

type GetApplicationParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

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

GetApplicationParams contains all the parameters to send to the API endpoint

for the get application operation.

Typically these are written to a http.Request.

func NewGetApplicationParams

func NewGetApplicationParams() *GetApplicationParams

NewGetApplicationParams creates a new GetApplicationParams 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 NewGetApplicationParamsWithContext

func NewGetApplicationParamsWithContext(ctx context.Context) *GetApplicationParams

NewGetApplicationParamsWithContext creates a new GetApplicationParams object with the ability to set a context for a request.

func NewGetApplicationParamsWithHTTPClient

func NewGetApplicationParamsWithHTTPClient(client *http.Client) *GetApplicationParams

NewGetApplicationParamsWithHTTPClient creates a new GetApplicationParams object with the ability to set a custom HTTPClient for a request.

func NewGetApplicationParamsWithTimeout

func NewGetApplicationParamsWithTimeout(timeout time.Duration) *GetApplicationParams

NewGetApplicationParamsWithTimeout creates a new GetApplicationParams object with the ability to set a timeout on a request.

func (*GetApplicationParams) SetAppName

func (o *GetApplicationParams) SetAppName(appName string)

SetAppName adds the appName to the get application params

func (*GetApplicationParams) SetContext

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

SetContext adds the context to the get application params

func (*GetApplicationParams) SetDefaults

func (o *GetApplicationParams) SetDefaults()

SetDefaults hydrates default values in the get application params (not the query body).

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

func (*GetApplicationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get application params

func (*GetApplicationParams) SetImpersonateGroup

func (o *GetApplicationParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the get application params

func (*GetApplicationParams) SetImpersonateUser

func (o *GetApplicationParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the get application params

func (*GetApplicationParams) SetTimeout

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

SetTimeout adds the timeout to the get application params

func (*GetApplicationParams) WithAppName

func (o *GetApplicationParams) WithAppName(appName string) *GetApplicationParams

WithAppName adds the appName to the get application params

func (*GetApplicationParams) WithContext

WithContext adds the context to the get application params

func (*GetApplicationParams) WithDefaults

func (o *GetApplicationParams) WithDefaults() *GetApplicationParams

WithDefaults hydrates default values in the get application params (not the query body).

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

func (*GetApplicationParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get application params

func (*GetApplicationParams) WithImpersonateGroup

func (o *GetApplicationParams) WithImpersonateGroup(impersonateGroup *string) *GetApplicationParams

WithImpersonateGroup adds the impersonateGroup to the get application params

func (*GetApplicationParams) WithImpersonateUser

func (o *GetApplicationParams) WithImpersonateUser(impersonateUser *string) *GetApplicationParams

WithImpersonateUser adds the impersonateUser to the get application params

func (*GetApplicationParams) WithTimeout

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

WithTimeout adds the timeout to the get application params

func (*GetApplicationParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetApplicationReader

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

GetApplicationReader is a Reader for the GetApplication structure.

func (*GetApplicationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetApplicationUnauthorized

type GetApplicationUnauthorized struct {
}

GetApplicationUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetApplicationUnauthorized

func NewGetApplicationUnauthorized() *GetApplicationUnauthorized

NewGetApplicationUnauthorized creates a GetApplicationUnauthorized with default headers values

func (*GetApplicationUnauthorized) Code

func (o *GetApplicationUnauthorized) Code() int

Code gets the status code for the get application unauthorized response

func (*GetApplicationUnauthorized) Error

func (*GetApplicationUnauthorized) IsClientError

func (o *GetApplicationUnauthorized) IsClientError() bool

IsClientError returns true when this get application unauthorized response has a 4xx status code

func (*GetApplicationUnauthorized) IsCode

func (o *GetApplicationUnauthorized) IsCode(code int) bool

IsCode returns true when this get application unauthorized response a status code equal to that given

func (*GetApplicationUnauthorized) IsRedirect

func (o *GetApplicationUnauthorized) IsRedirect() bool

IsRedirect returns true when this get application unauthorized response has a 3xx status code

func (*GetApplicationUnauthorized) IsServerError

func (o *GetApplicationUnauthorized) IsServerError() bool

IsServerError returns true when this get application unauthorized response has a 5xx status code

func (*GetApplicationUnauthorized) IsSuccess

func (o *GetApplicationUnauthorized) IsSuccess() bool

IsSuccess returns true when this get application unauthorized response has a 2xx status code

func (*GetApplicationUnauthorized) String

func (o *GetApplicationUnauthorized) String() string

type GetBuildSecretsNotFound

type GetBuildSecretsNotFound struct {
}

GetBuildSecretsNotFound describes a response with status code 404, with default header values.

Not found

func NewGetBuildSecretsNotFound

func NewGetBuildSecretsNotFound() *GetBuildSecretsNotFound

NewGetBuildSecretsNotFound creates a GetBuildSecretsNotFound with default headers values

func (*GetBuildSecretsNotFound) Code

func (o *GetBuildSecretsNotFound) Code() int

Code gets the status code for the get build secrets not found response

func (*GetBuildSecretsNotFound) Error

func (o *GetBuildSecretsNotFound) Error() string

func (*GetBuildSecretsNotFound) IsClientError

func (o *GetBuildSecretsNotFound) IsClientError() bool

IsClientError returns true when this get build secrets not found response has a 4xx status code

func (*GetBuildSecretsNotFound) IsCode

func (o *GetBuildSecretsNotFound) IsCode(code int) bool

IsCode returns true when this get build secrets not found response a status code equal to that given

func (*GetBuildSecretsNotFound) IsRedirect

func (o *GetBuildSecretsNotFound) IsRedirect() bool

IsRedirect returns true when this get build secrets not found response has a 3xx status code

func (*GetBuildSecretsNotFound) IsServerError

func (o *GetBuildSecretsNotFound) IsServerError() bool

IsServerError returns true when this get build secrets not found response has a 5xx status code

func (*GetBuildSecretsNotFound) IsSuccess

func (o *GetBuildSecretsNotFound) IsSuccess() bool

IsSuccess returns true when this get build secrets not found response has a 2xx status code

func (*GetBuildSecretsNotFound) String

func (o *GetBuildSecretsNotFound) String() string

type GetBuildSecretsOK

type GetBuildSecretsOK struct {
	Payload []*models.BuildSecret
}

GetBuildSecretsOK describes a response with status code 200, with default header values.

Successful operation

func NewGetBuildSecretsOK

func NewGetBuildSecretsOK() *GetBuildSecretsOK

NewGetBuildSecretsOK creates a GetBuildSecretsOK with default headers values

func (*GetBuildSecretsOK) Code

func (o *GetBuildSecretsOK) Code() int

Code gets the status code for the get build secrets o k response

func (*GetBuildSecretsOK) Error

func (o *GetBuildSecretsOK) Error() string

func (*GetBuildSecretsOK) GetPayload

func (o *GetBuildSecretsOK) GetPayload() []*models.BuildSecret

func (*GetBuildSecretsOK) IsClientError

func (o *GetBuildSecretsOK) IsClientError() bool

IsClientError returns true when this get build secrets o k response has a 4xx status code

func (*GetBuildSecretsOK) IsCode

func (o *GetBuildSecretsOK) IsCode(code int) bool

IsCode returns true when this get build secrets o k response a status code equal to that given

func (*GetBuildSecretsOK) IsRedirect

func (o *GetBuildSecretsOK) IsRedirect() bool

IsRedirect returns true when this get build secrets o k response has a 3xx status code

func (*GetBuildSecretsOK) IsServerError

func (o *GetBuildSecretsOK) IsServerError() bool

IsServerError returns true when this get build secrets o k response has a 5xx status code

func (*GetBuildSecretsOK) IsSuccess

func (o *GetBuildSecretsOK) IsSuccess() bool

IsSuccess returns true when this get build secrets o k response has a 2xx status code

func (*GetBuildSecretsOK) String

func (o *GetBuildSecretsOK) String() string

type GetBuildSecretsParams

type GetBuildSecretsParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   name of Radix application
	*/
	AppName string

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

GetBuildSecretsParams contains all the parameters to send to the API endpoint

for the get build secrets operation.

Typically these are written to a http.Request.

func NewGetBuildSecretsParams

func NewGetBuildSecretsParams() *GetBuildSecretsParams

NewGetBuildSecretsParams creates a new GetBuildSecretsParams 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 NewGetBuildSecretsParamsWithContext

func NewGetBuildSecretsParamsWithContext(ctx context.Context) *GetBuildSecretsParams

NewGetBuildSecretsParamsWithContext creates a new GetBuildSecretsParams object with the ability to set a context for a request.

func NewGetBuildSecretsParamsWithHTTPClient

func NewGetBuildSecretsParamsWithHTTPClient(client *http.Client) *GetBuildSecretsParams

NewGetBuildSecretsParamsWithHTTPClient creates a new GetBuildSecretsParams object with the ability to set a custom HTTPClient for a request.

func NewGetBuildSecretsParamsWithTimeout

func NewGetBuildSecretsParamsWithTimeout(timeout time.Duration) *GetBuildSecretsParams

NewGetBuildSecretsParamsWithTimeout creates a new GetBuildSecretsParams object with the ability to set a timeout on a request.

func (*GetBuildSecretsParams) SetAppName

func (o *GetBuildSecretsParams) SetAppName(appName string)

SetAppName adds the appName to the get build secrets params

func (*GetBuildSecretsParams) SetContext

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

SetContext adds the context to the get build secrets params

func (*GetBuildSecretsParams) SetDefaults

func (o *GetBuildSecretsParams) SetDefaults()

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

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

func (*GetBuildSecretsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get build secrets params

func (*GetBuildSecretsParams) SetImpersonateGroup

func (o *GetBuildSecretsParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the get build secrets params

func (*GetBuildSecretsParams) SetImpersonateUser

func (o *GetBuildSecretsParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the get build secrets params

func (*GetBuildSecretsParams) SetTimeout

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

SetTimeout adds the timeout to the get build secrets params

func (*GetBuildSecretsParams) WithAppName

func (o *GetBuildSecretsParams) WithAppName(appName string) *GetBuildSecretsParams

WithAppName adds the appName to the get build secrets params

func (*GetBuildSecretsParams) WithContext

WithContext adds the context to the get build secrets params

func (*GetBuildSecretsParams) WithDefaults

func (o *GetBuildSecretsParams) WithDefaults() *GetBuildSecretsParams

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

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

func (*GetBuildSecretsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get build secrets params

func (*GetBuildSecretsParams) WithImpersonateGroup

func (o *GetBuildSecretsParams) WithImpersonateGroup(impersonateGroup *string) *GetBuildSecretsParams

WithImpersonateGroup adds the impersonateGroup to the get build secrets params

func (*GetBuildSecretsParams) WithImpersonateUser

func (o *GetBuildSecretsParams) WithImpersonateUser(impersonateUser *string) *GetBuildSecretsParams

WithImpersonateUser adds the impersonateUser to the get build secrets params

func (*GetBuildSecretsParams) WithTimeout

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

WithTimeout adds the timeout to the get build secrets params

func (*GetBuildSecretsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetBuildSecretsReader

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

GetBuildSecretsReader is a Reader for the GetBuildSecrets structure.

func (*GetBuildSecretsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetBuildSecretsUnauthorized

type GetBuildSecretsUnauthorized struct {
}

GetBuildSecretsUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetBuildSecretsUnauthorized

func NewGetBuildSecretsUnauthorized() *GetBuildSecretsUnauthorized

NewGetBuildSecretsUnauthorized creates a GetBuildSecretsUnauthorized with default headers values

func (*GetBuildSecretsUnauthorized) Code

func (o *GetBuildSecretsUnauthorized) Code() int

Code gets the status code for the get build secrets unauthorized response

func (*GetBuildSecretsUnauthorized) Error

func (*GetBuildSecretsUnauthorized) IsClientError

func (o *GetBuildSecretsUnauthorized) IsClientError() bool

IsClientError returns true when this get build secrets unauthorized response has a 4xx status code

func (*GetBuildSecretsUnauthorized) IsCode

func (o *GetBuildSecretsUnauthorized) IsCode(code int) bool

IsCode returns true when this get build secrets unauthorized response a status code equal to that given

func (*GetBuildSecretsUnauthorized) IsRedirect

func (o *GetBuildSecretsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get build secrets unauthorized response has a 3xx status code

func (*GetBuildSecretsUnauthorized) IsServerError

func (o *GetBuildSecretsUnauthorized) IsServerError() bool

IsServerError returns true when this get build secrets unauthorized response has a 5xx status code

func (*GetBuildSecretsUnauthorized) IsSuccess

func (o *GetBuildSecretsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get build secrets unauthorized response has a 2xx status code

func (*GetBuildSecretsUnauthorized) String

func (o *GetBuildSecretsUnauthorized) String() string

type GetDeployKeyAndSecretNotFound

type GetDeployKeyAndSecretNotFound struct {
}

GetDeployKeyAndSecretNotFound describes a response with status code 404, with default header values.

Not found

func NewGetDeployKeyAndSecretNotFound

func NewGetDeployKeyAndSecretNotFound() *GetDeployKeyAndSecretNotFound

NewGetDeployKeyAndSecretNotFound creates a GetDeployKeyAndSecretNotFound with default headers values

func (*GetDeployKeyAndSecretNotFound) Code

Code gets the status code for the get deploy key and secret not found response

func (*GetDeployKeyAndSecretNotFound) Error

func (*GetDeployKeyAndSecretNotFound) IsClientError

func (o *GetDeployKeyAndSecretNotFound) IsClientError() bool

IsClientError returns true when this get deploy key and secret not found response has a 4xx status code

func (*GetDeployKeyAndSecretNotFound) IsCode

func (o *GetDeployKeyAndSecretNotFound) IsCode(code int) bool

IsCode returns true when this get deploy key and secret not found response a status code equal to that given

func (*GetDeployKeyAndSecretNotFound) IsRedirect

func (o *GetDeployKeyAndSecretNotFound) IsRedirect() bool

IsRedirect returns true when this get deploy key and secret not found response has a 3xx status code

func (*GetDeployKeyAndSecretNotFound) IsServerError

func (o *GetDeployKeyAndSecretNotFound) IsServerError() bool

IsServerError returns true when this get deploy key and secret not found response has a 5xx status code

func (*GetDeployKeyAndSecretNotFound) IsSuccess

func (o *GetDeployKeyAndSecretNotFound) IsSuccess() bool

IsSuccess returns true when this get deploy key and secret not found response has a 2xx status code

func (*GetDeployKeyAndSecretNotFound) String

type GetDeployKeyAndSecretOK

type GetDeployKeyAndSecretOK struct {
	Payload *models.DeployKeyAndSecret
}

GetDeployKeyAndSecretOK describes a response with status code 200, with default header values.

Successful get deploy key and secret

func NewGetDeployKeyAndSecretOK

func NewGetDeployKeyAndSecretOK() *GetDeployKeyAndSecretOK

NewGetDeployKeyAndSecretOK creates a GetDeployKeyAndSecretOK with default headers values

func (*GetDeployKeyAndSecretOK) Code

func (o *GetDeployKeyAndSecretOK) Code() int

Code gets the status code for the get deploy key and secret o k response

func (*GetDeployKeyAndSecretOK) Error

func (o *GetDeployKeyAndSecretOK) Error() string

func (*GetDeployKeyAndSecretOK) GetPayload

func (*GetDeployKeyAndSecretOK) IsClientError

func (o *GetDeployKeyAndSecretOK) IsClientError() bool

IsClientError returns true when this get deploy key and secret o k response has a 4xx status code

func (*GetDeployKeyAndSecretOK) IsCode

func (o *GetDeployKeyAndSecretOK) IsCode(code int) bool

IsCode returns true when this get deploy key and secret o k response a status code equal to that given

func (*GetDeployKeyAndSecretOK) IsRedirect

func (o *GetDeployKeyAndSecretOK) IsRedirect() bool

IsRedirect returns true when this get deploy key and secret o k response has a 3xx status code

func (*GetDeployKeyAndSecretOK) IsServerError

func (o *GetDeployKeyAndSecretOK) IsServerError() bool

IsServerError returns true when this get deploy key and secret o k response has a 5xx status code

func (*GetDeployKeyAndSecretOK) IsSuccess

func (o *GetDeployKeyAndSecretOK) IsSuccess() bool

IsSuccess returns true when this get deploy key and secret o k response has a 2xx status code

func (*GetDeployKeyAndSecretOK) String

func (o *GetDeployKeyAndSecretOK) String() string

type GetDeployKeyAndSecretParams

type GetDeployKeyAndSecretParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   name of application
	*/
	AppName string

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

GetDeployKeyAndSecretParams contains all the parameters to send to the API endpoint

for the get deploy key and secret operation.

Typically these are written to a http.Request.

func NewGetDeployKeyAndSecretParams

func NewGetDeployKeyAndSecretParams() *GetDeployKeyAndSecretParams

NewGetDeployKeyAndSecretParams creates a new GetDeployKeyAndSecretParams 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 NewGetDeployKeyAndSecretParamsWithContext

func NewGetDeployKeyAndSecretParamsWithContext(ctx context.Context) *GetDeployKeyAndSecretParams

NewGetDeployKeyAndSecretParamsWithContext creates a new GetDeployKeyAndSecretParams object with the ability to set a context for a request.

func NewGetDeployKeyAndSecretParamsWithHTTPClient

func NewGetDeployKeyAndSecretParamsWithHTTPClient(client *http.Client) *GetDeployKeyAndSecretParams

NewGetDeployKeyAndSecretParamsWithHTTPClient creates a new GetDeployKeyAndSecretParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeployKeyAndSecretParamsWithTimeout

func NewGetDeployKeyAndSecretParamsWithTimeout(timeout time.Duration) *GetDeployKeyAndSecretParams

NewGetDeployKeyAndSecretParamsWithTimeout creates a new GetDeployKeyAndSecretParams object with the ability to set a timeout on a request.

func (*GetDeployKeyAndSecretParams) SetAppName

func (o *GetDeployKeyAndSecretParams) SetAppName(appName string)

SetAppName adds the appName to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) SetContext

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

SetContext adds the context to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) SetDefaults

func (o *GetDeployKeyAndSecretParams) SetDefaults()

SetDefaults hydrates default values in the get deploy key and secret params (not the query body).

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

func (*GetDeployKeyAndSecretParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) SetImpersonateGroup

func (o *GetDeployKeyAndSecretParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) SetImpersonateUser

func (o *GetDeployKeyAndSecretParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) SetTimeout

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

SetTimeout adds the timeout to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) WithAppName

WithAppName adds the appName to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) WithContext

WithContext adds the context to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) WithDefaults

WithDefaults hydrates default values in the get deploy key and secret params (not the query body).

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

func (*GetDeployKeyAndSecretParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) WithImpersonateGroup

func (o *GetDeployKeyAndSecretParams) WithImpersonateGroup(impersonateGroup *string) *GetDeployKeyAndSecretParams

WithImpersonateGroup adds the impersonateGroup to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) WithImpersonateUser

func (o *GetDeployKeyAndSecretParams) WithImpersonateUser(impersonateUser *string) *GetDeployKeyAndSecretParams

WithImpersonateUser adds the impersonateUser to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) WithTimeout

WithTimeout adds the timeout to the get deploy key and secret params

func (*GetDeployKeyAndSecretParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeployKeyAndSecretReader

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

GetDeployKeyAndSecretReader is a Reader for the GetDeployKeyAndSecret structure.

func (*GetDeployKeyAndSecretReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeployKeyAndSecretUnauthorized

type GetDeployKeyAndSecretUnauthorized struct {
}

GetDeployKeyAndSecretUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetDeployKeyAndSecretUnauthorized

func NewGetDeployKeyAndSecretUnauthorized() *GetDeployKeyAndSecretUnauthorized

NewGetDeployKeyAndSecretUnauthorized creates a GetDeployKeyAndSecretUnauthorized with default headers values

func (*GetDeployKeyAndSecretUnauthorized) Code

Code gets the status code for the get deploy key and secret unauthorized response

func (*GetDeployKeyAndSecretUnauthorized) Error

func (*GetDeployKeyAndSecretUnauthorized) IsClientError

func (o *GetDeployKeyAndSecretUnauthorized) IsClientError() bool

IsClientError returns true when this get deploy key and secret unauthorized response has a 4xx status code

func (*GetDeployKeyAndSecretUnauthorized) IsCode

func (o *GetDeployKeyAndSecretUnauthorized) IsCode(code int) bool

IsCode returns true when this get deploy key and secret unauthorized response a status code equal to that given

func (*GetDeployKeyAndSecretUnauthorized) IsRedirect

func (o *GetDeployKeyAndSecretUnauthorized) IsRedirect() bool

IsRedirect returns true when this get deploy key and secret unauthorized response has a 3xx status code

func (*GetDeployKeyAndSecretUnauthorized) IsServerError

func (o *GetDeployKeyAndSecretUnauthorized) IsServerError() bool

IsServerError returns true when this get deploy key and secret unauthorized response has a 5xx status code

func (*GetDeployKeyAndSecretUnauthorized) IsSuccess

func (o *GetDeployKeyAndSecretUnauthorized) IsSuccess() bool

IsSuccess returns true when this get deploy key and secret unauthorized response has a 2xx status code

func (*GetDeployKeyAndSecretUnauthorized) String

type GetDeploymentsNotFound

type GetDeploymentsNotFound struct {
}

GetDeploymentsNotFound describes a response with status code 404, with default header values.

Not found

func NewGetDeploymentsNotFound

func NewGetDeploymentsNotFound() *GetDeploymentsNotFound

NewGetDeploymentsNotFound creates a GetDeploymentsNotFound with default headers values

func (*GetDeploymentsNotFound) Code

func (o *GetDeploymentsNotFound) Code() int

Code gets the status code for the get deployments not found response

func (*GetDeploymentsNotFound) Error

func (o *GetDeploymentsNotFound) Error() string

func (*GetDeploymentsNotFound) IsClientError

func (o *GetDeploymentsNotFound) IsClientError() bool

IsClientError returns true when this get deployments not found response has a 4xx status code

func (*GetDeploymentsNotFound) IsCode

func (o *GetDeploymentsNotFound) IsCode(code int) bool

IsCode returns true when this get deployments not found response a status code equal to that given

func (*GetDeploymentsNotFound) IsRedirect

func (o *GetDeploymentsNotFound) IsRedirect() bool

IsRedirect returns true when this get deployments not found response has a 3xx status code

func (*GetDeploymentsNotFound) IsServerError

func (o *GetDeploymentsNotFound) IsServerError() bool

IsServerError returns true when this get deployments not found response has a 5xx status code

func (*GetDeploymentsNotFound) IsSuccess

func (o *GetDeploymentsNotFound) IsSuccess() bool

IsSuccess returns true when this get deployments not found response has a 2xx status code

func (*GetDeploymentsNotFound) String

func (o *GetDeploymentsNotFound) String() string

type GetDeploymentsOK

type GetDeploymentsOK struct {
	Payload []*models.DeploymentSummary
}

GetDeploymentsOK describes a response with status code 200, with default header values.

Successful operation

func NewGetDeploymentsOK

func NewGetDeploymentsOK() *GetDeploymentsOK

NewGetDeploymentsOK creates a GetDeploymentsOK with default headers values

func (*GetDeploymentsOK) Code

func (o *GetDeploymentsOK) Code() int

Code gets the status code for the get deployments o k response

func (*GetDeploymentsOK) Error

func (o *GetDeploymentsOK) Error() string

func (*GetDeploymentsOK) GetPayload

func (o *GetDeploymentsOK) GetPayload() []*models.DeploymentSummary

func (*GetDeploymentsOK) IsClientError

func (o *GetDeploymentsOK) IsClientError() bool

IsClientError returns true when this get deployments o k response has a 4xx status code

func (*GetDeploymentsOK) IsCode

func (o *GetDeploymentsOK) IsCode(code int) bool

IsCode returns true when this get deployments o k response a status code equal to that given

func (*GetDeploymentsOK) IsRedirect

func (o *GetDeploymentsOK) IsRedirect() bool

IsRedirect returns true when this get deployments o k response has a 3xx status code

func (*GetDeploymentsOK) IsServerError

func (o *GetDeploymentsOK) IsServerError() bool

IsServerError returns true when this get deployments o k response has a 5xx status code

func (*GetDeploymentsOK) IsSuccess

func (o *GetDeploymentsOK) IsSuccess() bool

IsSuccess returns true when this get deployments o k response has a 2xx status code

func (*GetDeploymentsOK) String

func (o *GetDeploymentsOK) String() string

type GetDeploymentsParams

type GetDeploymentsParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   name of Radix application
	*/
	AppName string

	/* Environment.

	   environment of Radix application
	*/
	Environment *string

	/* Latest.

	   indicator to allow only listing latest
	*/
	Latest *bool

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

GetDeploymentsParams contains all the parameters to send to the API endpoint

for the get deployments operation.

Typically these are written to a http.Request.

func NewGetDeploymentsParams

func NewGetDeploymentsParams() *GetDeploymentsParams

NewGetDeploymentsParams creates a new GetDeploymentsParams 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 NewGetDeploymentsParamsWithContext

func NewGetDeploymentsParamsWithContext(ctx context.Context) *GetDeploymentsParams

NewGetDeploymentsParamsWithContext creates a new GetDeploymentsParams object with the ability to set a context for a request.

func NewGetDeploymentsParamsWithHTTPClient

func NewGetDeploymentsParamsWithHTTPClient(client *http.Client) *GetDeploymentsParams

NewGetDeploymentsParamsWithHTTPClient creates a new GetDeploymentsParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentsParamsWithTimeout

func NewGetDeploymentsParamsWithTimeout(timeout time.Duration) *GetDeploymentsParams

NewGetDeploymentsParamsWithTimeout creates a new GetDeploymentsParams object with the ability to set a timeout on a request.

func (*GetDeploymentsParams) SetAppName

func (o *GetDeploymentsParams) SetAppName(appName string)

SetAppName adds the appName to the get deployments params

func (*GetDeploymentsParams) SetContext

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

SetContext adds the context to the get deployments params

func (*GetDeploymentsParams) SetDefaults

func (o *GetDeploymentsParams) SetDefaults()

SetDefaults hydrates default values in the get deployments params (not the query body).

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

func (*GetDeploymentsParams) SetEnvironment

func (o *GetDeploymentsParams) SetEnvironment(environment *string)

SetEnvironment adds the environment to the get deployments params

func (*GetDeploymentsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployments params

func (*GetDeploymentsParams) SetImpersonateGroup

func (o *GetDeploymentsParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the get deployments params

func (*GetDeploymentsParams) SetImpersonateUser

func (o *GetDeploymentsParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the get deployments params

func (*GetDeploymentsParams) SetLatest

func (o *GetDeploymentsParams) SetLatest(latest *bool)

SetLatest adds the latest to the get deployments params

func (*GetDeploymentsParams) SetTimeout

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

SetTimeout adds the timeout to the get deployments params

func (*GetDeploymentsParams) WithAppName

func (o *GetDeploymentsParams) WithAppName(appName string) *GetDeploymentsParams

WithAppName adds the appName to the get deployments params

func (*GetDeploymentsParams) WithContext

WithContext adds the context to the get deployments params

func (*GetDeploymentsParams) WithDefaults

func (o *GetDeploymentsParams) WithDefaults() *GetDeploymentsParams

WithDefaults hydrates default values in the get deployments params (not the query body).

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

func (*GetDeploymentsParams) WithEnvironment

func (o *GetDeploymentsParams) WithEnvironment(environment *string) *GetDeploymentsParams

WithEnvironment adds the environment to the get deployments params

func (*GetDeploymentsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get deployments params

func (*GetDeploymentsParams) WithImpersonateGroup

func (o *GetDeploymentsParams) WithImpersonateGroup(impersonateGroup *string) *GetDeploymentsParams

WithImpersonateGroup adds the impersonateGroup to the get deployments params

func (*GetDeploymentsParams) WithImpersonateUser

func (o *GetDeploymentsParams) WithImpersonateUser(impersonateUser *string) *GetDeploymentsParams

WithImpersonateUser adds the impersonateUser to the get deployments params

func (*GetDeploymentsParams) WithLatest

func (o *GetDeploymentsParams) WithLatest(latest *bool) *GetDeploymentsParams

WithLatest adds the latest to the get deployments params

func (*GetDeploymentsParams) WithTimeout

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

WithTimeout adds the timeout to the get deployments params

func (*GetDeploymentsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetDeploymentsReader

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

GetDeploymentsReader is a Reader for the GetDeployments structure.

func (*GetDeploymentsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentsUnauthorized

type GetDeploymentsUnauthorized struct {
}

GetDeploymentsUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetDeploymentsUnauthorized

func NewGetDeploymentsUnauthorized() *GetDeploymentsUnauthorized

NewGetDeploymentsUnauthorized creates a GetDeploymentsUnauthorized with default headers values

func (*GetDeploymentsUnauthorized) Code

func (o *GetDeploymentsUnauthorized) Code() int

Code gets the status code for the get deployments unauthorized response

func (*GetDeploymentsUnauthorized) Error

func (*GetDeploymentsUnauthorized) IsClientError

func (o *GetDeploymentsUnauthorized) IsClientError() bool

IsClientError returns true when this get deployments unauthorized response has a 4xx status code

func (*GetDeploymentsUnauthorized) IsCode

func (o *GetDeploymentsUnauthorized) IsCode(code int) bool

IsCode returns true when this get deployments unauthorized response a status code equal to that given

func (*GetDeploymentsUnauthorized) IsRedirect

func (o *GetDeploymentsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get deployments unauthorized response has a 3xx status code

func (*GetDeploymentsUnauthorized) IsServerError

func (o *GetDeploymentsUnauthorized) IsServerError() bool

IsServerError returns true when this get deployments unauthorized response has a 5xx status code

func (*GetDeploymentsUnauthorized) IsSuccess

func (o *GetDeploymentsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get deployments unauthorized response has a 2xx status code

func (*GetDeploymentsUnauthorized) String

func (o *GetDeploymentsUnauthorized) String() string

type GetPrivateImageHubsNotFound

type GetPrivateImageHubsNotFound struct {
}

GetPrivateImageHubsNotFound describes a response with status code 404, with default header values.

Not found

func NewGetPrivateImageHubsNotFound

func NewGetPrivateImageHubsNotFound() *GetPrivateImageHubsNotFound

NewGetPrivateImageHubsNotFound creates a GetPrivateImageHubsNotFound with default headers values

func (*GetPrivateImageHubsNotFound) Code

func (o *GetPrivateImageHubsNotFound) Code() int

Code gets the status code for the get private image hubs not found response

func (*GetPrivateImageHubsNotFound) Error

func (*GetPrivateImageHubsNotFound) IsClientError

func (o *GetPrivateImageHubsNotFound) IsClientError() bool

IsClientError returns true when this get private image hubs not found response has a 4xx status code

func (*GetPrivateImageHubsNotFound) IsCode

func (o *GetPrivateImageHubsNotFound) IsCode(code int) bool

IsCode returns true when this get private image hubs not found response a status code equal to that given

func (*GetPrivateImageHubsNotFound) IsRedirect

func (o *GetPrivateImageHubsNotFound) IsRedirect() bool

IsRedirect returns true when this get private image hubs not found response has a 3xx status code

func (*GetPrivateImageHubsNotFound) IsServerError

func (o *GetPrivateImageHubsNotFound) IsServerError() bool

IsServerError returns true when this get private image hubs not found response has a 5xx status code

func (*GetPrivateImageHubsNotFound) IsSuccess

func (o *GetPrivateImageHubsNotFound) IsSuccess() bool

IsSuccess returns true when this get private image hubs not found response has a 2xx status code

func (*GetPrivateImageHubsNotFound) String

func (o *GetPrivateImageHubsNotFound) String() string

type GetPrivateImageHubsOK

type GetPrivateImageHubsOK struct {
	Payload []*models.ImageHubSecret
}

GetPrivateImageHubsOK describes a response with status code 200, with default header values.

Successful operation

func NewGetPrivateImageHubsOK

func NewGetPrivateImageHubsOK() *GetPrivateImageHubsOK

NewGetPrivateImageHubsOK creates a GetPrivateImageHubsOK with default headers values

func (*GetPrivateImageHubsOK) Code

func (o *GetPrivateImageHubsOK) Code() int

Code gets the status code for the get private image hubs o k response

func (*GetPrivateImageHubsOK) Error

func (o *GetPrivateImageHubsOK) Error() string

func (*GetPrivateImageHubsOK) GetPayload

func (o *GetPrivateImageHubsOK) GetPayload() []*models.ImageHubSecret

func (*GetPrivateImageHubsOK) IsClientError

func (o *GetPrivateImageHubsOK) IsClientError() bool

IsClientError returns true when this get private image hubs o k response has a 4xx status code

func (*GetPrivateImageHubsOK) IsCode

func (o *GetPrivateImageHubsOK) IsCode(code int) bool

IsCode returns true when this get private image hubs o k response a status code equal to that given

func (*GetPrivateImageHubsOK) IsRedirect

func (o *GetPrivateImageHubsOK) IsRedirect() bool

IsRedirect returns true when this get private image hubs o k response has a 3xx status code

func (*GetPrivateImageHubsOK) IsServerError

func (o *GetPrivateImageHubsOK) IsServerError() bool

IsServerError returns true when this get private image hubs o k response has a 5xx status code

func (*GetPrivateImageHubsOK) IsSuccess

func (o *GetPrivateImageHubsOK) IsSuccess() bool

IsSuccess returns true when this get private image hubs o k response has a 2xx status code

func (*GetPrivateImageHubsOK) String

func (o *GetPrivateImageHubsOK) String() string

type GetPrivateImageHubsParams

type GetPrivateImageHubsParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   name of Radix application
	*/
	AppName string

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

GetPrivateImageHubsParams contains all the parameters to send to the API endpoint

for the get private image hubs operation.

Typically these are written to a http.Request.

func NewGetPrivateImageHubsParams

func NewGetPrivateImageHubsParams() *GetPrivateImageHubsParams

NewGetPrivateImageHubsParams creates a new GetPrivateImageHubsParams 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 NewGetPrivateImageHubsParamsWithContext

func NewGetPrivateImageHubsParamsWithContext(ctx context.Context) *GetPrivateImageHubsParams

NewGetPrivateImageHubsParamsWithContext creates a new GetPrivateImageHubsParams object with the ability to set a context for a request.

func NewGetPrivateImageHubsParamsWithHTTPClient

func NewGetPrivateImageHubsParamsWithHTTPClient(client *http.Client) *GetPrivateImageHubsParams

NewGetPrivateImageHubsParamsWithHTTPClient creates a new GetPrivateImageHubsParams object with the ability to set a custom HTTPClient for a request.

func NewGetPrivateImageHubsParamsWithTimeout

func NewGetPrivateImageHubsParamsWithTimeout(timeout time.Duration) *GetPrivateImageHubsParams

NewGetPrivateImageHubsParamsWithTimeout creates a new GetPrivateImageHubsParams object with the ability to set a timeout on a request.

func (*GetPrivateImageHubsParams) SetAppName

func (o *GetPrivateImageHubsParams) SetAppName(appName string)

SetAppName adds the appName to the get private image hubs params

func (*GetPrivateImageHubsParams) SetContext

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

SetContext adds the context to the get private image hubs params

func (*GetPrivateImageHubsParams) SetDefaults

func (o *GetPrivateImageHubsParams) SetDefaults()

SetDefaults hydrates default values in the get private image hubs params (not the query body).

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

func (*GetPrivateImageHubsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get private image hubs params

func (*GetPrivateImageHubsParams) SetImpersonateGroup

func (o *GetPrivateImageHubsParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the get private image hubs params

func (*GetPrivateImageHubsParams) SetImpersonateUser

func (o *GetPrivateImageHubsParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the get private image hubs params

func (*GetPrivateImageHubsParams) SetTimeout

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

SetTimeout adds the timeout to the get private image hubs params

func (*GetPrivateImageHubsParams) WithAppName

WithAppName adds the appName to the get private image hubs params

func (*GetPrivateImageHubsParams) WithContext

WithContext adds the context to the get private image hubs params

func (*GetPrivateImageHubsParams) WithDefaults

WithDefaults hydrates default values in the get private image hubs params (not the query body).

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

func (*GetPrivateImageHubsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get private image hubs params

func (*GetPrivateImageHubsParams) WithImpersonateGroup

func (o *GetPrivateImageHubsParams) WithImpersonateGroup(impersonateGroup *string) *GetPrivateImageHubsParams

WithImpersonateGroup adds the impersonateGroup to the get private image hubs params

func (*GetPrivateImageHubsParams) WithImpersonateUser

func (o *GetPrivateImageHubsParams) WithImpersonateUser(impersonateUser *string) *GetPrivateImageHubsParams

WithImpersonateUser adds the impersonateUser to the get private image hubs params

func (*GetPrivateImageHubsParams) WithTimeout

WithTimeout adds the timeout to the get private image hubs params

func (*GetPrivateImageHubsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetPrivateImageHubsReader

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

GetPrivateImageHubsReader is a Reader for the GetPrivateImageHubs structure.

func (*GetPrivateImageHubsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetPrivateImageHubsUnauthorized

type GetPrivateImageHubsUnauthorized struct {
}

GetPrivateImageHubsUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetPrivateImageHubsUnauthorized

func NewGetPrivateImageHubsUnauthorized() *GetPrivateImageHubsUnauthorized

NewGetPrivateImageHubsUnauthorized creates a GetPrivateImageHubsUnauthorized with default headers values

func (*GetPrivateImageHubsUnauthorized) Code

Code gets the status code for the get private image hubs unauthorized response

func (*GetPrivateImageHubsUnauthorized) Error

func (*GetPrivateImageHubsUnauthorized) IsClientError

func (o *GetPrivateImageHubsUnauthorized) IsClientError() bool

IsClientError returns true when this get private image hubs unauthorized response has a 4xx status code

func (*GetPrivateImageHubsUnauthorized) IsCode

func (o *GetPrivateImageHubsUnauthorized) IsCode(code int) bool

IsCode returns true when this get private image hubs unauthorized response a status code equal to that given

func (*GetPrivateImageHubsUnauthorized) IsRedirect

func (o *GetPrivateImageHubsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get private image hubs unauthorized response has a 3xx status code

func (*GetPrivateImageHubsUnauthorized) IsServerError

func (o *GetPrivateImageHubsUnauthorized) IsServerError() bool

IsServerError returns true when this get private image hubs unauthorized response has a 5xx status code

func (*GetPrivateImageHubsUnauthorized) IsSuccess

func (o *GetPrivateImageHubsUnauthorized) IsSuccess() bool

IsSuccess returns true when this get private image hubs unauthorized response has a 2xx status code

func (*GetPrivateImageHubsUnauthorized) String

type IsDeployKeyValidConflict

type IsDeployKeyValidConflict struct {
}

IsDeployKeyValidConflict describes a response with status code 409, with default header values.

Conflict

func NewIsDeployKeyValidConflict

func NewIsDeployKeyValidConflict() *IsDeployKeyValidConflict

NewIsDeployKeyValidConflict creates a IsDeployKeyValidConflict with default headers values

func (*IsDeployKeyValidConflict) Code

func (o *IsDeployKeyValidConflict) Code() int

Code gets the status code for the is deploy key valid conflict response

func (*IsDeployKeyValidConflict) Error

func (o *IsDeployKeyValidConflict) Error() string

func (*IsDeployKeyValidConflict) IsClientError

func (o *IsDeployKeyValidConflict) IsClientError() bool

IsClientError returns true when this is deploy key valid conflict response has a 4xx status code

func (*IsDeployKeyValidConflict) IsCode

func (o *IsDeployKeyValidConflict) IsCode(code int) bool

IsCode returns true when this is deploy key valid conflict response a status code equal to that given

func (*IsDeployKeyValidConflict) IsRedirect

func (o *IsDeployKeyValidConflict) IsRedirect() bool

IsRedirect returns true when this is deploy key valid conflict response has a 3xx status code

func (*IsDeployKeyValidConflict) IsServerError

func (o *IsDeployKeyValidConflict) IsServerError() bool

IsServerError returns true when this is deploy key valid conflict response has a 5xx status code

func (*IsDeployKeyValidConflict) IsSuccess

func (o *IsDeployKeyValidConflict) IsSuccess() bool

IsSuccess returns true when this is deploy key valid conflict response has a 2xx status code

func (*IsDeployKeyValidConflict) String

func (o *IsDeployKeyValidConflict) String() string

type IsDeployKeyValidForbidden

type IsDeployKeyValidForbidden struct {
}

IsDeployKeyValidForbidden describes a response with status code 403, with default header values.

Forbidden

func NewIsDeployKeyValidForbidden

func NewIsDeployKeyValidForbidden() *IsDeployKeyValidForbidden

NewIsDeployKeyValidForbidden creates a IsDeployKeyValidForbidden with default headers values

func (*IsDeployKeyValidForbidden) Code

func (o *IsDeployKeyValidForbidden) Code() int

Code gets the status code for the is deploy key valid forbidden response

func (*IsDeployKeyValidForbidden) Error

func (o *IsDeployKeyValidForbidden) Error() string

func (*IsDeployKeyValidForbidden) IsClientError

func (o *IsDeployKeyValidForbidden) IsClientError() bool

IsClientError returns true when this is deploy key valid forbidden response has a 4xx status code

func (*IsDeployKeyValidForbidden) IsCode

func (o *IsDeployKeyValidForbidden) IsCode(code int) bool

IsCode returns true when this is deploy key valid forbidden response a status code equal to that given

func (*IsDeployKeyValidForbidden) IsRedirect

func (o *IsDeployKeyValidForbidden) IsRedirect() bool

IsRedirect returns true when this is deploy key valid forbidden response has a 3xx status code

func (*IsDeployKeyValidForbidden) IsServerError

func (o *IsDeployKeyValidForbidden) IsServerError() bool

IsServerError returns true when this is deploy key valid forbidden response has a 5xx status code

func (*IsDeployKeyValidForbidden) IsSuccess

func (o *IsDeployKeyValidForbidden) IsSuccess() bool

IsSuccess returns true when this is deploy key valid forbidden response has a 2xx status code

func (*IsDeployKeyValidForbidden) String

func (o *IsDeployKeyValidForbidden) String() string

type IsDeployKeyValidInternalServerError

type IsDeployKeyValidInternalServerError struct {
}

IsDeployKeyValidInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewIsDeployKeyValidInternalServerError

func NewIsDeployKeyValidInternalServerError() *IsDeployKeyValidInternalServerError

NewIsDeployKeyValidInternalServerError creates a IsDeployKeyValidInternalServerError with default headers values

func (*IsDeployKeyValidInternalServerError) Code

Code gets the status code for the is deploy key valid internal server error response

func (*IsDeployKeyValidInternalServerError) Error

func (*IsDeployKeyValidInternalServerError) IsClientError

func (o *IsDeployKeyValidInternalServerError) IsClientError() bool

IsClientError returns true when this is deploy key valid internal server error response has a 4xx status code

func (*IsDeployKeyValidInternalServerError) IsCode

IsCode returns true when this is deploy key valid internal server error response a status code equal to that given

func (*IsDeployKeyValidInternalServerError) IsRedirect

func (o *IsDeployKeyValidInternalServerError) IsRedirect() bool

IsRedirect returns true when this is deploy key valid internal server error response has a 3xx status code

func (*IsDeployKeyValidInternalServerError) IsServerError

func (o *IsDeployKeyValidInternalServerError) IsServerError() bool

IsServerError returns true when this is deploy key valid internal server error response has a 5xx status code

func (*IsDeployKeyValidInternalServerError) IsSuccess

IsSuccess returns true when this is deploy key valid internal server error response has a 2xx status code

func (*IsDeployKeyValidInternalServerError) String

type IsDeployKeyValidNotFound

type IsDeployKeyValidNotFound struct {
}

IsDeployKeyValidNotFound describes a response with status code 404, with default header values.

Not found

func NewIsDeployKeyValidNotFound

func NewIsDeployKeyValidNotFound() *IsDeployKeyValidNotFound

NewIsDeployKeyValidNotFound creates a IsDeployKeyValidNotFound with default headers values

func (*IsDeployKeyValidNotFound) Code

func (o *IsDeployKeyValidNotFound) Code() int

Code gets the status code for the is deploy key valid not found response

func (*IsDeployKeyValidNotFound) Error

func (o *IsDeployKeyValidNotFound) Error() string

func (*IsDeployKeyValidNotFound) IsClientError

func (o *IsDeployKeyValidNotFound) IsClientError() bool

IsClientError returns true when this is deploy key valid not found response has a 4xx status code

func (*IsDeployKeyValidNotFound) IsCode

func (o *IsDeployKeyValidNotFound) IsCode(code int) bool

IsCode returns true when this is deploy key valid not found response a status code equal to that given

func (*IsDeployKeyValidNotFound) IsRedirect

func (o *IsDeployKeyValidNotFound) IsRedirect() bool

IsRedirect returns true when this is deploy key valid not found response has a 3xx status code

func (*IsDeployKeyValidNotFound) IsServerError

func (o *IsDeployKeyValidNotFound) IsServerError() bool

IsServerError returns true when this is deploy key valid not found response has a 5xx status code

func (*IsDeployKeyValidNotFound) IsSuccess

func (o *IsDeployKeyValidNotFound) IsSuccess() bool

IsSuccess returns true when this is deploy key valid not found response has a 2xx status code

func (*IsDeployKeyValidNotFound) String

func (o *IsDeployKeyValidNotFound) String() string

type IsDeployKeyValidOK

type IsDeployKeyValidOK struct {
}

IsDeployKeyValidOK describes a response with status code 200, with default header values.

Deploy key is valid

func NewIsDeployKeyValidOK

func NewIsDeployKeyValidOK() *IsDeployKeyValidOK

NewIsDeployKeyValidOK creates a IsDeployKeyValidOK with default headers values

func (*IsDeployKeyValidOK) Code

func (o *IsDeployKeyValidOK) Code() int

Code gets the status code for the is deploy key valid o k response

func (*IsDeployKeyValidOK) Error

func (o *IsDeployKeyValidOK) Error() string

func (*IsDeployKeyValidOK) IsClientError

func (o *IsDeployKeyValidOK) IsClientError() bool

IsClientError returns true when this is deploy key valid o k response has a 4xx status code

func (*IsDeployKeyValidOK) IsCode

func (o *IsDeployKeyValidOK) IsCode(code int) bool

IsCode returns true when this is deploy key valid o k response a status code equal to that given

func (*IsDeployKeyValidOK) IsRedirect

func (o *IsDeployKeyValidOK) IsRedirect() bool

IsRedirect returns true when this is deploy key valid o k response has a 3xx status code

func (*IsDeployKeyValidOK) IsServerError

func (o *IsDeployKeyValidOK) IsServerError() bool

IsServerError returns true when this is deploy key valid o k response has a 5xx status code

func (*IsDeployKeyValidOK) IsSuccess

func (o *IsDeployKeyValidOK) IsSuccess() bool

IsSuccess returns true when this is deploy key valid o k response has a 2xx status code

func (*IsDeployKeyValidOK) String

func (o *IsDeployKeyValidOK) String() string

type IsDeployKeyValidParams

type IsDeployKeyValidParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

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

IsDeployKeyValidParams contains all the parameters to send to the API endpoint

for the is deploy key valid operation.

Typically these are written to a http.Request.

func NewIsDeployKeyValidParams

func NewIsDeployKeyValidParams() *IsDeployKeyValidParams

NewIsDeployKeyValidParams creates a new IsDeployKeyValidParams 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 NewIsDeployKeyValidParamsWithContext

func NewIsDeployKeyValidParamsWithContext(ctx context.Context) *IsDeployKeyValidParams

NewIsDeployKeyValidParamsWithContext creates a new IsDeployKeyValidParams object with the ability to set a context for a request.

func NewIsDeployKeyValidParamsWithHTTPClient

func NewIsDeployKeyValidParamsWithHTTPClient(client *http.Client) *IsDeployKeyValidParams

NewIsDeployKeyValidParamsWithHTTPClient creates a new IsDeployKeyValidParams object with the ability to set a custom HTTPClient for a request.

func NewIsDeployKeyValidParamsWithTimeout

func NewIsDeployKeyValidParamsWithTimeout(timeout time.Duration) *IsDeployKeyValidParams

NewIsDeployKeyValidParamsWithTimeout creates a new IsDeployKeyValidParams object with the ability to set a timeout on a request.

func (*IsDeployKeyValidParams) SetAppName

func (o *IsDeployKeyValidParams) SetAppName(appName string)

SetAppName adds the appName to the is deploy key valid params

func (*IsDeployKeyValidParams) SetContext

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

SetContext adds the context to the is deploy key valid params

func (*IsDeployKeyValidParams) SetDefaults

func (o *IsDeployKeyValidParams) SetDefaults()

SetDefaults hydrates default values in the is deploy key valid params (not the query body).

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

func (*IsDeployKeyValidParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the is deploy key valid params

func (*IsDeployKeyValidParams) SetImpersonateGroup

func (o *IsDeployKeyValidParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the is deploy key valid params

func (*IsDeployKeyValidParams) SetImpersonateUser

func (o *IsDeployKeyValidParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the is deploy key valid params

func (*IsDeployKeyValidParams) SetTimeout

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

SetTimeout adds the timeout to the is deploy key valid params

func (*IsDeployKeyValidParams) WithAppName

func (o *IsDeployKeyValidParams) WithAppName(appName string) *IsDeployKeyValidParams

WithAppName adds the appName to the is deploy key valid params

func (*IsDeployKeyValidParams) WithContext

WithContext adds the context to the is deploy key valid params

func (*IsDeployKeyValidParams) WithDefaults

WithDefaults hydrates default values in the is deploy key valid params (not the query body).

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

func (*IsDeployKeyValidParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the is deploy key valid params

func (*IsDeployKeyValidParams) WithImpersonateGroup

func (o *IsDeployKeyValidParams) WithImpersonateGroup(impersonateGroup *string) *IsDeployKeyValidParams

WithImpersonateGroup adds the impersonateGroup to the is deploy key valid params

func (*IsDeployKeyValidParams) WithImpersonateUser

func (o *IsDeployKeyValidParams) WithImpersonateUser(impersonateUser *string) *IsDeployKeyValidParams

WithImpersonateUser adds the impersonateUser to the is deploy key valid params

func (*IsDeployKeyValidParams) WithTimeout

WithTimeout adds the timeout to the is deploy key valid params

func (*IsDeployKeyValidParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type IsDeployKeyValidReader

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

IsDeployKeyValidReader is a Reader for the IsDeployKeyValid structure.

func (*IsDeployKeyValidReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type IsDeployKeyValidUnauthorized

type IsDeployKeyValidUnauthorized struct {
}

IsDeployKeyValidUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewIsDeployKeyValidUnauthorized

func NewIsDeployKeyValidUnauthorized() *IsDeployKeyValidUnauthorized

NewIsDeployKeyValidUnauthorized creates a IsDeployKeyValidUnauthorized with default headers values

func (*IsDeployKeyValidUnauthorized) Code

Code gets the status code for the is deploy key valid unauthorized response

func (*IsDeployKeyValidUnauthorized) Error

func (*IsDeployKeyValidUnauthorized) IsClientError

func (o *IsDeployKeyValidUnauthorized) IsClientError() bool

IsClientError returns true when this is deploy key valid unauthorized response has a 4xx status code

func (*IsDeployKeyValidUnauthorized) IsCode

func (o *IsDeployKeyValidUnauthorized) IsCode(code int) bool

IsCode returns true when this is deploy key valid unauthorized response a status code equal to that given

func (*IsDeployKeyValidUnauthorized) IsRedirect

func (o *IsDeployKeyValidUnauthorized) IsRedirect() bool

IsRedirect returns true when this is deploy key valid unauthorized response has a 3xx status code

func (*IsDeployKeyValidUnauthorized) IsServerError

func (o *IsDeployKeyValidUnauthorized) IsServerError() bool

IsServerError returns true when this is deploy key valid unauthorized response has a 5xx status code

func (*IsDeployKeyValidUnauthorized) IsSuccess

func (o *IsDeployKeyValidUnauthorized) IsSuccess() bool

IsSuccess returns true when this is deploy key valid unauthorized response has a 2xx status code

func (*IsDeployKeyValidUnauthorized) String

type ListPipelinesOK

type ListPipelinesOK struct {
	Payload []string
}

ListPipelinesOK describes a response with status code 200, with default header values.

Successful operation

func NewListPipelinesOK

func NewListPipelinesOK() *ListPipelinesOK

NewListPipelinesOK creates a ListPipelinesOK with default headers values

func (*ListPipelinesOK) Code

func (o *ListPipelinesOK) Code() int

Code gets the status code for the list pipelines o k response

func (*ListPipelinesOK) Error

func (o *ListPipelinesOK) Error() string

func (*ListPipelinesOK) GetPayload

func (o *ListPipelinesOK) GetPayload() []string

func (*ListPipelinesOK) IsClientError

func (o *ListPipelinesOK) IsClientError() bool

IsClientError returns true when this list pipelines o k response has a 4xx status code

func (*ListPipelinesOK) IsCode

func (o *ListPipelinesOK) IsCode(code int) bool

IsCode returns true when this list pipelines o k response a status code equal to that given

func (*ListPipelinesOK) IsRedirect

func (o *ListPipelinesOK) IsRedirect() bool

IsRedirect returns true when this list pipelines o k response has a 3xx status code

func (*ListPipelinesOK) IsServerError

func (o *ListPipelinesOK) IsServerError() bool

IsServerError returns true when this list pipelines o k response has a 5xx status code

func (*ListPipelinesOK) IsSuccess

func (o *ListPipelinesOK) IsSuccess() bool

IsSuccess returns true when this list pipelines o k response has a 2xx status code

func (*ListPipelinesOK) String

func (o *ListPipelinesOK) String() string

type ListPipelinesParams

type ListPipelinesParams struct {

	/* AppName.

	   Name of application
	*/
	AppName string

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

ListPipelinesParams contains all the parameters to send to the API endpoint

for the list pipelines operation.

Typically these are written to a http.Request.

func NewListPipelinesParams

func NewListPipelinesParams() *ListPipelinesParams

NewListPipelinesParams creates a new ListPipelinesParams 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 NewListPipelinesParamsWithContext

func NewListPipelinesParamsWithContext(ctx context.Context) *ListPipelinesParams

NewListPipelinesParamsWithContext creates a new ListPipelinesParams object with the ability to set a context for a request.

func NewListPipelinesParamsWithHTTPClient

func NewListPipelinesParamsWithHTTPClient(client *http.Client) *ListPipelinesParams

NewListPipelinesParamsWithHTTPClient creates a new ListPipelinesParams object with the ability to set a custom HTTPClient for a request.

func NewListPipelinesParamsWithTimeout

func NewListPipelinesParamsWithTimeout(timeout time.Duration) *ListPipelinesParams

NewListPipelinesParamsWithTimeout creates a new ListPipelinesParams object with the ability to set a timeout on a request.

func (*ListPipelinesParams) SetAppName

func (o *ListPipelinesParams) SetAppName(appName string)

SetAppName adds the appName to the list pipelines params

func (*ListPipelinesParams) SetContext

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

SetContext adds the context to the list pipelines params

func (*ListPipelinesParams) SetDefaults

func (o *ListPipelinesParams) SetDefaults()

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

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

func (*ListPipelinesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list pipelines params

func (*ListPipelinesParams) SetTimeout

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

SetTimeout adds the timeout to the list pipelines params

func (*ListPipelinesParams) WithAppName

func (o *ListPipelinesParams) WithAppName(appName string) *ListPipelinesParams

WithAppName adds the appName to the list pipelines params

func (*ListPipelinesParams) WithContext

WithContext adds the context to the list pipelines params

func (*ListPipelinesParams) WithDefaults

func (o *ListPipelinesParams) WithDefaults() *ListPipelinesParams

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

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

func (*ListPipelinesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list pipelines params

func (*ListPipelinesParams) WithTimeout

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

WithTimeout adds the timeout to the list pipelines params

func (*ListPipelinesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListPipelinesReader

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

ListPipelinesReader is a Reader for the ListPipelines structure.

func (*ListPipelinesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ModifyRegistrationDetailsBadRequest

type ModifyRegistrationDetailsBadRequest struct {
}

ModifyRegistrationDetailsBadRequest describes a response with status code 400, with default header values.

Invalid application

func NewModifyRegistrationDetailsBadRequest

func NewModifyRegistrationDetailsBadRequest() *ModifyRegistrationDetailsBadRequest

NewModifyRegistrationDetailsBadRequest creates a ModifyRegistrationDetailsBadRequest with default headers values

func (*ModifyRegistrationDetailsBadRequest) Code

Code gets the status code for the modify registration details bad request response

func (*ModifyRegistrationDetailsBadRequest) Error

func (*ModifyRegistrationDetailsBadRequest) IsClientError

func (o *ModifyRegistrationDetailsBadRequest) IsClientError() bool

IsClientError returns true when this modify registration details bad request response has a 4xx status code

func (*ModifyRegistrationDetailsBadRequest) IsCode

IsCode returns true when this modify registration details bad request response a status code equal to that given

func (*ModifyRegistrationDetailsBadRequest) IsRedirect

func (o *ModifyRegistrationDetailsBadRequest) IsRedirect() bool

IsRedirect returns true when this modify registration details bad request response has a 3xx status code

func (*ModifyRegistrationDetailsBadRequest) IsServerError

func (o *ModifyRegistrationDetailsBadRequest) IsServerError() bool

IsServerError returns true when this modify registration details bad request response has a 5xx status code

func (*ModifyRegistrationDetailsBadRequest) IsSuccess

IsSuccess returns true when this modify registration details bad request response has a 2xx status code

func (*ModifyRegistrationDetailsBadRequest) String

type ModifyRegistrationDetailsConflict

type ModifyRegistrationDetailsConflict struct {
}

ModifyRegistrationDetailsConflict describes a response with status code 409, with default header values.

Conflict

func NewModifyRegistrationDetailsConflict

func NewModifyRegistrationDetailsConflict() *ModifyRegistrationDetailsConflict

NewModifyRegistrationDetailsConflict creates a ModifyRegistrationDetailsConflict with default headers values

func (*ModifyRegistrationDetailsConflict) Code

Code gets the status code for the modify registration details conflict response

func (*ModifyRegistrationDetailsConflict) Error

func (*ModifyRegistrationDetailsConflict) IsClientError

func (o *ModifyRegistrationDetailsConflict) IsClientError() bool

IsClientError returns true when this modify registration details conflict response has a 4xx status code

func (*ModifyRegistrationDetailsConflict) IsCode

func (o *ModifyRegistrationDetailsConflict) IsCode(code int) bool

IsCode returns true when this modify registration details conflict response a status code equal to that given

func (*ModifyRegistrationDetailsConflict) IsRedirect

func (o *ModifyRegistrationDetailsConflict) IsRedirect() bool

IsRedirect returns true when this modify registration details conflict response has a 3xx status code

func (*ModifyRegistrationDetailsConflict) IsServerError

func (o *ModifyRegistrationDetailsConflict) IsServerError() bool

IsServerError returns true when this modify registration details conflict response has a 5xx status code

func (*ModifyRegistrationDetailsConflict) IsSuccess

func (o *ModifyRegistrationDetailsConflict) IsSuccess() bool

IsSuccess returns true when this modify registration details conflict response has a 2xx status code

func (*ModifyRegistrationDetailsConflict) String

type ModifyRegistrationDetailsNotFound

type ModifyRegistrationDetailsNotFound struct {
}

ModifyRegistrationDetailsNotFound describes a response with status code 404, with default header values.

Not found

func NewModifyRegistrationDetailsNotFound

func NewModifyRegistrationDetailsNotFound() *ModifyRegistrationDetailsNotFound

NewModifyRegistrationDetailsNotFound creates a ModifyRegistrationDetailsNotFound with default headers values

func (*ModifyRegistrationDetailsNotFound) Code

Code gets the status code for the modify registration details not found response

func (*ModifyRegistrationDetailsNotFound) Error

func (*ModifyRegistrationDetailsNotFound) IsClientError

func (o *ModifyRegistrationDetailsNotFound) IsClientError() bool

IsClientError returns true when this modify registration details not found response has a 4xx status code

func (*ModifyRegistrationDetailsNotFound) IsCode

func (o *ModifyRegistrationDetailsNotFound) IsCode(code int) bool

IsCode returns true when this modify registration details not found response a status code equal to that given

func (*ModifyRegistrationDetailsNotFound) IsRedirect

func (o *ModifyRegistrationDetailsNotFound) IsRedirect() bool

IsRedirect returns true when this modify registration details not found response has a 3xx status code

func (*ModifyRegistrationDetailsNotFound) IsServerError

func (o *ModifyRegistrationDetailsNotFound) IsServerError() bool

IsServerError returns true when this modify registration details not found response has a 5xx status code

func (*ModifyRegistrationDetailsNotFound) IsSuccess

func (o *ModifyRegistrationDetailsNotFound) IsSuccess() bool

IsSuccess returns true when this modify registration details not found response has a 2xx status code

func (*ModifyRegistrationDetailsNotFound) String

type ModifyRegistrationDetailsOK

type ModifyRegistrationDetailsOK struct {
	Payload *models.ApplicationRegistrationUpsertResponse
}

ModifyRegistrationDetailsOK describes a response with status code 200, with default header values.

Modifying registration operation details

func NewModifyRegistrationDetailsOK

func NewModifyRegistrationDetailsOK() *ModifyRegistrationDetailsOK

NewModifyRegistrationDetailsOK creates a ModifyRegistrationDetailsOK with default headers values

func (*ModifyRegistrationDetailsOK) Code

func (o *ModifyRegistrationDetailsOK) Code() int

Code gets the status code for the modify registration details o k response

func (*ModifyRegistrationDetailsOK) Error

func (*ModifyRegistrationDetailsOK) GetPayload

func (*ModifyRegistrationDetailsOK) IsClientError

func (o *ModifyRegistrationDetailsOK) IsClientError() bool

IsClientError returns true when this modify registration details o k response has a 4xx status code

func (*ModifyRegistrationDetailsOK) IsCode

func (o *ModifyRegistrationDetailsOK) IsCode(code int) bool

IsCode returns true when this modify registration details o k response a status code equal to that given

func (*ModifyRegistrationDetailsOK) IsRedirect

func (o *ModifyRegistrationDetailsOK) IsRedirect() bool

IsRedirect returns true when this modify registration details o k response has a 3xx status code

func (*ModifyRegistrationDetailsOK) IsServerError

func (o *ModifyRegistrationDetailsOK) IsServerError() bool

IsServerError returns true when this modify registration details o k response has a 5xx status code

func (*ModifyRegistrationDetailsOK) IsSuccess

func (o *ModifyRegistrationDetailsOK) IsSuccess() bool

IsSuccess returns true when this modify registration details o k response has a 2xx status code

func (*ModifyRegistrationDetailsOK) String

func (o *ModifyRegistrationDetailsOK) String() string

type ModifyRegistrationDetailsParams

type ModifyRegistrationDetailsParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

	/* PatchRequest.

	   Request for Application to patch
	*/
	PatchRequest *models.ApplicationRegistrationPatchRequest

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

ModifyRegistrationDetailsParams contains all the parameters to send to the API endpoint

for the modify registration details operation.

Typically these are written to a http.Request.

func NewModifyRegistrationDetailsParams

func NewModifyRegistrationDetailsParams() *ModifyRegistrationDetailsParams

NewModifyRegistrationDetailsParams creates a new ModifyRegistrationDetailsParams 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 NewModifyRegistrationDetailsParamsWithContext

func NewModifyRegistrationDetailsParamsWithContext(ctx context.Context) *ModifyRegistrationDetailsParams

NewModifyRegistrationDetailsParamsWithContext creates a new ModifyRegistrationDetailsParams object with the ability to set a context for a request.

func NewModifyRegistrationDetailsParamsWithHTTPClient

func NewModifyRegistrationDetailsParamsWithHTTPClient(client *http.Client) *ModifyRegistrationDetailsParams

NewModifyRegistrationDetailsParamsWithHTTPClient creates a new ModifyRegistrationDetailsParams object with the ability to set a custom HTTPClient for a request.

func NewModifyRegistrationDetailsParamsWithTimeout

func NewModifyRegistrationDetailsParamsWithTimeout(timeout time.Duration) *ModifyRegistrationDetailsParams

NewModifyRegistrationDetailsParamsWithTimeout creates a new ModifyRegistrationDetailsParams object with the ability to set a timeout on a request.

func (*ModifyRegistrationDetailsParams) SetAppName

func (o *ModifyRegistrationDetailsParams) SetAppName(appName string)

SetAppName adds the appName to the modify registration details params

func (*ModifyRegistrationDetailsParams) SetContext

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

SetContext adds the context to the modify registration details params

func (*ModifyRegistrationDetailsParams) SetDefaults

func (o *ModifyRegistrationDetailsParams) SetDefaults()

SetDefaults hydrates default values in the modify registration details params (not the query body).

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

func (*ModifyRegistrationDetailsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the modify registration details params

func (*ModifyRegistrationDetailsParams) SetImpersonateGroup

func (o *ModifyRegistrationDetailsParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the modify registration details params

func (*ModifyRegistrationDetailsParams) SetImpersonateUser

func (o *ModifyRegistrationDetailsParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the modify registration details params

func (*ModifyRegistrationDetailsParams) SetPatchRequest

SetPatchRequest adds the patchRequest to the modify registration details params

func (*ModifyRegistrationDetailsParams) SetTimeout

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

SetTimeout adds the timeout to the modify registration details params

func (*ModifyRegistrationDetailsParams) WithAppName

WithAppName adds the appName to the modify registration details params

func (*ModifyRegistrationDetailsParams) WithContext

WithContext adds the context to the modify registration details params

func (*ModifyRegistrationDetailsParams) WithDefaults

WithDefaults hydrates default values in the modify registration details params (not the query body).

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

func (*ModifyRegistrationDetailsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the modify registration details params

func (*ModifyRegistrationDetailsParams) WithImpersonateGroup

func (o *ModifyRegistrationDetailsParams) WithImpersonateGroup(impersonateGroup *string) *ModifyRegistrationDetailsParams

WithImpersonateGroup adds the impersonateGroup to the modify registration details params

func (*ModifyRegistrationDetailsParams) WithImpersonateUser

func (o *ModifyRegistrationDetailsParams) WithImpersonateUser(impersonateUser *string) *ModifyRegistrationDetailsParams

WithImpersonateUser adds the impersonateUser to the modify registration details params

func (*ModifyRegistrationDetailsParams) WithPatchRequest

WithPatchRequest adds the patchRequest to the modify registration details params

func (*ModifyRegistrationDetailsParams) WithTimeout

WithTimeout adds the timeout to the modify registration details params

func (*ModifyRegistrationDetailsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ModifyRegistrationDetailsReader

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

ModifyRegistrationDetailsReader is a Reader for the ModifyRegistrationDetails structure.

func (*ModifyRegistrationDetailsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ModifyRegistrationDetailsUnauthorized

type ModifyRegistrationDetailsUnauthorized struct {
}

ModifyRegistrationDetailsUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewModifyRegistrationDetailsUnauthorized

func NewModifyRegistrationDetailsUnauthorized() *ModifyRegistrationDetailsUnauthorized

NewModifyRegistrationDetailsUnauthorized creates a ModifyRegistrationDetailsUnauthorized with default headers values

func (*ModifyRegistrationDetailsUnauthorized) Code

Code gets the status code for the modify registration details unauthorized response

func (*ModifyRegistrationDetailsUnauthorized) Error

func (*ModifyRegistrationDetailsUnauthorized) IsClientError

func (o *ModifyRegistrationDetailsUnauthorized) IsClientError() bool

IsClientError returns true when this modify registration details unauthorized response has a 4xx status code

func (*ModifyRegistrationDetailsUnauthorized) IsCode

IsCode returns true when this modify registration details unauthorized response a status code equal to that given

func (*ModifyRegistrationDetailsUnauthorized) IsRedirect

IsRedirect returns true when this modify registration details unauthorized response has a 3xx status code

func (*ModifyRegistrationDetailsUnauthorized) IsServerError

func (o *ModifyRegistrationDetailsUnauthorized) IsServerError() bool

IsServerError returns true when this modify registration details unauthorized response has a 5xx status code

func (*ModifyRegistrationDetailsUnauthorized) IsSuccess

IsSuccess returns true when this modify registration details unauthorized response has a 2xx status code

func (*ModifyRegistrationDetailsUnauthorized) String

type RegenerateDeployKeyConflict

type RegenerateDeployKeyConflict struct {
}

RegenerateDeployKeyConflict describes a response with status code 409, with default header values.

Conflict

func NewRegenerateDeployKeyConflict

func NewRegenerateDeployKeyConflict() *RegenerateDeployKeyConflict

NewRegenerateDeployKeyConflict creates a RegenerateDeployKeyConflict with default headers values

func (*RegenerateDeployKeyConflict) Code

func (o *RegenerateDeployKeyConflict) Code() int

Code gets the status code for the regenerate deploy key conflict response

func (*RegenerateDeployKeyConflict) Error

func (*RegenerateDeployKeyConflict) IsClientError

func (o *RegenerateDeployKeyConflict) IsClientError() bool

IsClientError returns true when this regenerate deploy key conflict response has a 4xx status code

func (*RegenerateDeployKeyConflict) IsCode

func (o *RegenerateDeployKeyConflict) IsCode(code int) bool

IsCode returns true when this regenerate deploy key conflict response a status code equal to that given

func (*RegenerateDeployKeyConflict) IsRedirect

func (o *RegenerateDeployKeyConflict) IsRedirect() bool

IsRedirect returns true when this regenerate deploy key conflict response has a 3xx status code

func (*RegenerateDeployKeyConflict) IsServerError

func (o *RegenerateDeployKeyConflict) IsServerError() bool

IsServerError returns true when this regenerate deploy key conflict response has a 5xx status code

func (*RegenerateDeployKeyConflict) IsSuccess

func (o *RegenerateDeployKeyConflict) IsSuccess() bool

IsSuccess returns true when this regenerate deploy key conflict response has a 2xx status code

func (*RegenerateDeployKeyConflict) String

func (o *RegenerateDeployKeyConflict) String() string

type RegenerateDeployKeyNoContent

type RegenerateDeployKeyNoContent struct {
}

RegenerateDeployKeyNoContent describes a response with status code 204, with default header values.

Successfully regenerated deploy key and set shared secret

func NewRegenerateDeployKeyNoContent

func NewRegenerateDeployKeyNoContent() *RegenerateDeployKeyNoContent

NewRegenerateDeployKeyNoContent creates a RegenerateDeployKeyNoContent with default headers values

func (*RegenerateDeployKeyNoContent) Code

Code gets the status code for the regenerate deploy key no content response

func (*RegenerateDeployKeyNoContent) Error

func (*RegenerateDeployKeyNoContent) IsClientError

func (o *RegenerateDeployKeyNoContent) IsClientError() bool

IsClientError returns true when this regenerate deploy key no content response has a 4xx status code

func (*RegenerateDeployKeyNoContent) IsCode

func (o *RegenerateDeployKeyNoContent) IsCode(code int) bool

IsCode returns true when this regenerate deploy key no content response a status code equal to that given

func (*RegenerateDeployKeyNoContent) IsRedirect

func (o *RegenerateDeployKeyNoContent) IsRedirect() bool

IsRedirect returns true when this regenerate deploy key no content response has a 3xx status code

func (*RegenerateDeployKeyNoContent) IsServerError

func (o *RegenerateDeployKeyNoContent) IsServerError() bool

IsServerError returns true when this regenerate deploy key no content response has a 5xx status code

func (*RegenerateDeployKeyNoContent) IsSuccess

func (o *RegenerateDeployKeyNoContent) IsSuccess() bool

IsSuccess returns true when this regenerate deploy key no content response has a 2xx status code

func (*RegenerateDeployKeyNoContent) String

type RegenerateDeployKeyNotFound

type RegenerateDeployKeyNotFound struct {
}

RegenerateDeployKeyNotFound describes a response with status code 404, with default header values.

Not found

func NewRegenerateDeployKeyNotFound

func NewRegenerateDeployKeyNotFound() *RegenerateDeployKeyNotFound

NewRegenerateDeployKeyNotFound creates a RegenerateDeployKeyNotFound with default headers values

func (*RegenerateDeployKeyNotFound) Code

func (o *RegenerateDeployKeyNotFound) Code() int

Code gets the status code for the regenerate deploy key not found response

func (*RegenerateDeployKeyNotFound) Error

func (*RegenerateDeployKeyNotFound) IsClientError

func (o *RegenerateDeployKeyNotFound) IsClientError() bool

IsClientError returns true when this regenerate deploy key not found response has a 4xx status code

func (*RegenerateDeployKeyNotFound) IsCode

func (o *RegenerateDeployKeyNotFound) IsCode(code int) bool

IsCode returns true when this regenerate deploy key not found response a status code equal to that given

func (*RegenerateDeployKeyNotFound) IsRedirect

func (o *RegenerateDeployKeyNotFound) IsRedirect() bool

IsRedirect returns true when this regenerate deploy key not found response has a 3xx status code

func (*RegenerateDeployKeyNotFound) IsServerError

func (o *RegenerateDeployKeyNotFound) IsServerError() bool

IsServerError returns true when this regenerate deploy key not found response has a 5xx status code

func (*RegenerateDeployKeyNotFound) IsSuccess

func (o *RegenerateDeployKeyNotFound) IsSuccess() bool

IsSuccess returns true when this regenerate deploy key not found response has a 2xx status code

func (*RegenerateDeployKeyNotFound) String

func (o *RegenerateDeployKeyNotFound) String() string

type RegenerateDeployKeyParams

type RegenerateDeployKeyParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   name of application
	*/
	AppName string

	/* RegenerateDeployKeyAndSecretData.

	   Regenerate deploy key and secret data
	*/
	RegenerateDeployKeyAndSecretData *models.RegenerateDeployKeyAndSecretData

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

RegenerateDeployKeyParams contains all the parameters to send to the API endpoint

for the regenerate deploy key operation.

Typically these are written to a http.Request.

func NewRegenerateDeployKeyParams

func NewRegenerateDeployKeyParams() *RegenerateDeployKeyParams

NewRegenerateDeployKeyParams creates a new RegenerateDeployKeyParams 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 NewRegenerateDeployKeyParamsWithContext

func NewRegenerateDeployKeyParamsWithContext(ctx context.Context) *RegenerateDeployKeyParams

NewRegenerateDeployKeyParamsWithContext creates a new RegenerateDeployKeyParams object with the ability to set a context for a request.

func NewRegenerateDeployKeyParamsWithHTTPClient

func NewRegenerateDeployKeyParamsWithHTTPClient(client *http.Client) *RegenerateDeployKeyParams

NewRegenerateDeployKeyParamsWithHTTPClient creates a new RegenerateDeployKeyParams object with the ability to set a custom HTTPClient for a request.

func NewRegenerateDeployKeyParamsWithTimeout

func NewRegenerateDeployKeyParamsWithTimeout(timeout time.Duration) *RegenerateDeployKeyParams

NewRegenerateDeployKeyParamsWithTimeout creates a new RegenerateDeployKeyParams object with the ability to set a timeout on a request.

func (*RegenerateDeployKeyParams) SetAppName

func (o *RegenerateDeployKeyParams) SetAppName(appName string)

SetAppName adds the appName to the regenerate deploy key params

func (*RegenerateDeployKeyParams) SetContext

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

SetContext adds the context to the regenerate deploy key params

func (*RegenerateDeployKeyParams) SetDefaults

func (o *RegenerateDeployKeyParams) SetDefaults()

SetDefaults hydrates default values in the regenerate deploy key params (not the query body).

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

func (*RegenerateDeployKeyParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the regenerate deploy key params

func (*RegenerateDeployKeyParams) SetImpersonateGroup

func (o *RegenerateDeployKeyParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the regenerate deploy key params

func (*RegenerateDeployKeyParams) SetImpersonateUser

func (o *RegenerateDeployKeyParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the regenerate deploy key params

func (*RegenerateDeployKeyParams) SetRegenerateDeployKeyAndSecretData

func (o *RegenerateDeployKeyParams) SetRegenerateDeployKeyAndSecretData(regenerateDeployKeyAndSecretData *models.RegenerateDeployKeyAndSecretData)

SetRegenerateDeployKeyAndSecretData adds the regenerateDeployKeyAndSecretData to the regenerate deploy key params

func (*RegenerateDeployKeyParams) SetTimeout

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

SetTimeout adds the timeout to the regenerate deploy key params

func (*RegenerateDeployKeyParams) WithAppName

WithAppName adds the appName to the regenerate deploy key params

func (*RegenerateDeployKeyParams) WithContext

WithContext adds the context to the regenerate deploy key params

func (*RegenerateDeployKeyParams) WithDefaults

WithDefaults hydrates default values in the regenerate deploy key params (not the query body).

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

func (*RegenerateDeployKeyParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the regenerate deploy key params

func (*RegenerateDeployKeyParams) WithImpersonateGroup

func (o *RegenerateDeployKeyParams) WithImpersonateGroup(impersonateGroup *string) *RegenerateDeployKeyParams

WithImpersonateGroup adds the impersonateGroup to the regenerate deploy key params

func (*RegenerateDeployKeyParams) WithImpersonateUser

func (o *RegenerateDeployKeyParams) WithImpersonateUser(impersonateUser *string) *RegenerateDeployKeyParams

WithImpersonateUser adds the impersonateUser to the regenerate deploy key params

func (*RegenerateDeployKeyParams) WithRegenerateDeployKeyAndSecretData

func (o *RegenerateDeployKeyParams) WithRegenerateDeployKeyAndSecretData(regenerateDeployKeyAndSecretData *models.RegenerateDeployKeyAndSecretData) *RegenerateDeployKeyParams

WithRegenerateDeployKeyAndSecretData adds the regenerateDeployKeyAndSecretData to the regenerate deploy key params

func (*RegenerateDeployKeyParams) WithTimeout

WithTimeout adds the timeout to the regenerate deploy key params

func (*RegenerateDeployKeyParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RegenerateDeployKeyReader

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

RegenerateDeployKeyReader is a Reader for the RegenerateDeployKey structure.

func (*RegenerateDeployKeyReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RegenerateDeployKeyUnauthorized

type RegenerateDeployKeyUnauthorized struct {
}

RegenerateDeployKeyUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewRegenerateDeployKeyUnauthorized

func NewRegenerateDeployKeyUnauthorized() *RegenerateDeployKeyUnauthorized

NewRegenerateDeployKeyUnauthorized creates a RegenerateDeployKeyUnauthorized with default headers values

func (*RegenerateDeployKeyUnauthorized) Code

Code gets the status code for the regenerate deploy key unauthorized response

func (*RegenerateDeployKeyUnauthorized) Error

func (*RegenerateDeployKeyUnauthorized) IsClientError

func (o *RegenerateDeployKeyUnauthorized) IsClientError() bool

IsClientError returns true when this regenerate deploy key unauthorized response has a 4xx status code

func (*RegenerateDeployKeyUnauthorized) IsCode

func (o *RegenerateDeployKeyUnauthorized) IsCode(code int) bool

IsCode returns true when this regenerate deploy key unauthorized response a status code equal to that given

func (*RegenerateDeployKeyUnauthorized) IsRedirect

func (o *RegenerateDeployKeyUnauthorized) IsRedirect() bool

IsRedirect returns true when this regenerate deploy key unauthorized response has a 3xx status code

func (*RegenerateDeployKeyUnauthorized) IsServerError

func (o *RegenerateDeployKeyUnauthorized) IsServerError() bool

IsServerError returns true when this regenerate deploy key unauthorized response has a 5xx status code

func (*RegenerateDeployKeyUnauthorized) IsSuccess

func (o *RegenerateDeployKeyUnauthorized) IsSuccess() bool

IsSuccess returns true when this regenerate deploy key unauthorized response has a 2xx status code

func (*RegenerateDeployKeyUnauthorized) String

type RegenerateMachineUserTokenConflict

type RegenerateMachineUserTokenConflict struct {
}
RegenerateMachineUserTokenConflict describes a response with status code 409, with default header values.

Conflict

func NewRegenerateMachineUserTokenConflict

func NewRegenerateMachineUserTokenConflict() *RegenerateMachineUserTokenConflict

NewRegenerateMachineUserTokenConflict creates a RegenerateMachineUserTokenConflict with default headers values

func (*RegenerateMachineUserTokenConflict) Error

type RegenerateMachineUserTokenForbidden

type RegenerateMachineUserTokenForbidden struct {
}
RegenerateMachineUserTokenForbidden describes a response with status code 403, with default header values.

Forbidden

func NewRegenerateMachineUserTokenForbidden

func NewRegenerateMachineUserTokenForbidden() *RegenerateMachineUserTokenForbidden

NewRegenerateMachineUserTokenForbidden creates a RegenerateMachineUserTokenForbidden with default headers values

func (*RegenerateMachineUserTokenForbidden) Error

type RegenerateMachineUserTokenInternalServerError

type RegenerateMachineUserTokenInternalServerError struct {
}
RegenerateMachineUserTokenInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewRegenerateMachineUserTokenInternalServerError

func NewRegenerateMachineUserTokenInternalServerError() *RegenerateMachineUserTokenInternalServerError

NewRegenerateMachineUserTokenInternalServerError creates a RegenerateMachineUserTokenInternalServerError with default headers values

func (*RegenerateMachineUserTokenInternalServerError) Error

type RegenerateMachineUserTokenNotFound

type RegenerateMachineUserTokenNotFound struct {
}
RegenerateMachineUserTokenNotFound describes a response with status code 404, with default header values.

Not found

func NewRegenerateMachineUserTokenNotFound

func NewRegenerateMachineUserTokenNotFound() *RegenerateMachineUserTokenNotFound

NewRegenerateMachineUserTokenNotFound creates a RegenerateMachineUserTokenNotFound with default headers values

func (*RegenerateMachineUserTokenNotFound) Error

type RegenerateMachineUserTokenOK

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

Successful regenerate machine-user token

func NewRegenerateMachineUserTokenOK

func NewRegenerateMachineUserTokenOK() *RegenerateMachineUserTokenOK

NewRegenerateMachineUserTokenOK creates a RegenerateMachineUserTokenOK with default headers values

func (*RegenerateMachineUserTokenOK) Error

func (*RegenerateMachineUserTokenOK) GetPayload

type RegenerateMachineUserTokenParams

type RegenerateMachineUserTokenParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of test group (Required if Impersonate-User is set)
	*/
	ImpersonateGroup []string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   name of application
	*/
	AppName string

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

RegenerateMachineUserTokenParams contains all the parameters to send to the API endpoint

for the regenerate machine user token operation.

Typically these are written to a http.Request.

func NewRegenerateMachineUserTokenParams

func NewRegenerateMachineUserTokenParams() *RegenerateMachineUserTokenParams

NewRegenerateMachineUserTokenParams creates a new RegenerateMachineUserTokenParams 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 NewRegenerateMachineUserTokenParamsWithContext

func NewRegenerateMachineUserTokenParamsWithContext(ctx context.Context) *RegenerateMachineUserTokenParams

NewRegenerateMachineUserTokenParamsWithContext creates a new RegenerateMachineUserTokenParams object with the ability to set a context for a request.

func NewRegenerateMachineUserTokenParamsWithHTTPClient

func NewRegenerateMachineUserTokenParamsWithHTTPClient(client *http.Client) *RegenerateMachineUserTokenParams

NewRegenerateMachineUserTokenParamsWithHTTPClient creates a new RegenerateMachineUserTokenParams object with the ability to set a custom HTTPClient for a request.

func NewRegenerateMachineUserTokenParamsWithTimeout

func NewRegenerateMachineUserTokenParamsWithTimeout(timeout time.Duration) *RegenerateMachineUserTokenParams

NewRegenerateMachineUserTokenParamsWithTimeout creates a new RegenerateMachineUserTokenParams object with the ability to set a timeout on a request.

func (*RegenerateMachineUserTokenParams) SetAppName

func (o *RegenerateMachineUserTokenParams) SetAppName(appName string)

SetAppName adds the appName to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) SetContext

SetContext adds the context to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) SetDefaults

func (o *RegenerateMachineUserTokenParams) SetDefaults()

SetDefaults hydrates default values in the regenerate machine user token params (not the query body).

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

func (*RegenerateMachineUserTokenParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) SetImpersonateGroup

func (o *RegenerateMachineUserTokenParams) SetImpersonateGroup(impersonateGroup []string)

SetImpersonateGroup adds the impersonateGroup to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) SetImpersonateUser

func (o *RegenerateMachineUserTokenParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) SetTimeout

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

SetTimeout adds the timeout to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) WithAppName

WithAppName adds the appName to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) WithContext

WithContext adds the context to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) WithDefaults

WithDefaults hydrates default values in the regenerate machine user token params (not the query body).

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

func (*RegenerateMachineUserTokenParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) WithImpersonateGroup

func (o *RegenerateMachineUserTokenParams) WithImpersonateGroup(impersonateGroup []string) *RegenerateMachineUserTokenParams

WithImpersonateGroup adds the impersonateGroup to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) WithImpersonateUser

func (o *RegenerateMachineUserTokenParams) WithImpersonateUser(impersonateUser *string) *RegenerateMachineUserTokenParams

WithImpersonateUser adds the impersonateUser to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) WithTimeout

WithTimeout adds the timeout to the regenerate machine user token params

func (*RegenerateMachineUserTokenParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RegenerateMachineUserTokenReader

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

RegenerateMachineUserTokenReader is a Reader for the RegenerateMachineUserToken structure.

func (*RegenerateMachineUserTokenReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RegenerateMachineUserTokenUnauthorized

type RegenerateMachineUserTokenUnauthorized struct {
}
RegenerateMachineUserTokenUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewRegenerateMachineUserTokenUnauthorized

func NewRegenerateMachineUserTokenUnauthorized() *RegenerateMachineUserTokenUnauthorized

NewRegenerateMachineUserTokenUnauthorized creates a RegenerateMachineUserTokenUnauthorized with default headers values

func (*RegenerateMachineUserTokenUnauthorized) Error

type RestartApplicationNotFound

type RestartApplicationNotFound struct {
}

RestartApplicationNotFound describes a response with status code 404, with default header values.

Not found

func NewRestartApplicationNotFound

func NewRestartApplicationNotFound() *RestartApplicationNotFound

NewRestartApplicationNotFound creates a RestartApplicationNotFound with default headers values

func (*RestartApplicationNotFound) Code

func (o *RestartApplicationNotFound) Code() int

Code gets the status code for the restart application not found response

func (*RestartApplicationNotFound) Error

func (*RestartApplicationNotFound) IsClientError

func (o *RestartApplicationNotFound) IsClientError() bool

IsClientError returns true when this restart application not found response has a 4xx status code

func (*RestartApplicationNotFound) IsCode

func (o *RestartApplicationNotFound) IsCode(code int) bool

IsCode returns true when this restart application not found response a status code equal to that given

func (*RestartApplicationNotFound) IsRedirect

func (o *RestartApplicationNotFound) IsRedirect() bool

IsRedirect returns true when this restart application not found response has a 3xx status code

func (*RestartApplicationNotFound) IsServerError

func (o *RestartApplicationNotFound) IsServerError() bool

IsServerError returns true when this restart application not found response has a 5xx status code

func (*RestartApplicationNotFound) IsSuccess

func (o *RestartApplicationNotFound) IsSuccess() bool

IsSuccess returns true when this restart application not found response has a 2xx status code

func (*RestartApplicationNotFound) String

func (o *RestartApplicationNotFound) String() string

type RestartApplicationOK

type RestartApplicationOK struct {
}

RestartApplicationOK describes a response with status code 200, with default header values.

Application started ok

func NewRestartApplicationOK

func NewRestartApplicationOK() *RestartApplicationOK

NewRestartApplicationOK creates a RestartApplicationOK with default headers values

func (*RestartApplicationOK) Code

func (o *RestartApplicationOK) Code() int

Code gets the status code for the restart application o k response

func (*RestartApplicationOK) Error

func (o *RestartApplicationOK) Error() string

func (*RestartApplicationOK) IsClientError

func (o *RestartApplicationOK) IsClientError() bool

IsClientError returns true when this restart application o k response has a 4xx status code

func (*RestartApplicationOK) IsCode

func (o *RestartApplicationOK) IsCode(code int) bool

IsCode returns true when this restart application o k response a status code equal to that given

func (*RestartApplicationOK) IsRedirect

func (o *RestartApplicationOK) IsRedirect() bool

IsRedirect returns true when this restart application o k response has a 3xx status code

func (*RestartApplicationOK) IsServerError

func (o *RestartApplicationOK) IsServerError() bool

IsServerError returns true when this restart application o k response has a 5xx status code

func (*RestartApplicationOK) IsSuccess

func (o *RestartApplicationOK) IsSuccess() bool

IsSuccess returns true when this restart application o k response has a 2xx status code

func (*RestartApplicationOK) String

func (o *RestartApplicationOK) String() string

type RestartApplicationParams

type RestartApplicationParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

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

RestartApplicationParams contains all the parameters to send to the API endpoint

for the restart application operation.

Typically these are written to a http.Request.

func NewRestartApplicationParams

func NewRestartApplicationParams() *RestartApplicationParams

NewRestartApplicationParams creates a new RestartApplicationParams 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 NewRestartApplicationParamsWithContext

func NewRestartApplicationParamsWithContext(ctx context.Context) *RestartApplicationParams

NewRestartApplicationParamsWithContext creates a new RestartApplicationParams object with the ability to set a context for a request.

func NewRestartApplicationParamsWithHTTPClient

func NewRestartApplicationParamsWithHTTPClient(client *http.Client) *RestartApplicationParams

NewRestartApplicationParamsWithHTTPClient creates a new RestartApplicationParams object with the ability to set a custom HTTPClient for a request.

func NewRestartApplicationParamsWithTimeout

func NewRestartApplicationParamsWithTimeout(timeout time.Duration) *RestartApplicationParams

NewRestartApplicationParamsWithTimeout creates a new RestartApplicationParams object with the ability to set a timeout on a request.

func (*RestartApplicationParams) SetAppName

func (o *RestartApplicationParams) SetAppName(appName string)

SetAppName adds the appName to the restart application params

func (*RestartApplicationParams) SetContext

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

SetContext adds the context to the restart application params

func (*RestartApplicationParams) SetDefaults

func (o *RestartApplicationParams) SetDefaults()

SetDefaults hydrates default values in the restart application params (not the query body).

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

func (*RestartApplicationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the restart application params

func (*RestartApplicationParams) SetImpersonateGroup

func (o *RestartApplicationParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the restart application params

func (*RestartApplicationParams) SetImpersonateUser

func (o *RestartApplicationParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the restart application params

func (*RestartApplicationParams) SetTimeout

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

SetTimeout adds the timeout to the restart application params

func (*RestartApplicationParams) WithAppName

func (o *RestartApplicationParams) WithAppName(appName string) *RestartApplicationParams

WithAppName adds the appName to the restart application params

func (*RestartApplicationParams) WithContext

WithContext adds the context to the restart application params

func (*RestartApplicationParams) WithDefaults

WithDefaults hydrates default values in the restart application params (not the query body).

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

func (*RestartApplicationParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the restart application params

func (*RestartApplicationParams) WithImpersonateGroup

func (o *RestartApplicationParams) WithImpersonateGroup(impersonateGroup *string) *RestartApplicationParams

WithImpersonateGroup adds the impersonateGroup to the restart application params

func (*RestartApplicationParams) WithImpersonateUser

func (o *RestartApplicationParams) WithImpersonateUser(impersonateUser *string) *RestartApplicationParams

WithImpersonateUser adds the impersonateUser to the restart application params

func (*RestartApplicationParams) WithTimeout

WithTimeout adds the timeout to the restart application params

func (*RestartApplicationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RestartApplicationReader

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

RestartApplicationReader is a Reader for the RestartApplication structure.

func (*RestartApplicationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RestartApplicationUnauthorized

type RestartApplicationUnauthorized struct {
}

RestartApplicationUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewRestartApplicationUnauthorized

func NewRestartApplicationUnauthorized() *RestartApplicationUnauthorized

NewRestartApplicationUnauthorized creates a RestartApplicationUnauthorized with default headers values

func (*RestartApplicationUnauthorized) Code

Code gets the status code for the restart application unauthorized response

func (*RestartApplicationUnauthorized) Error

func (*RestartApplicationUnauthorized) IsClientError

func (o *RestartApplicationUnauthorized) IsClientError() bool

IsClientError returns true when this restart application unauthorized response has a 4xx status code

func (*RestartApplicationUnauthorized) IsCode

func (o *RestartApplicationUnauthorized) IsCode(code int) bool

IsCode returns true when this restart application unauthorized response a status code equal to that given

func (*RestartApplicationUnauthorized) IsRedirect

func (o *RestartApplicationUnauthorized) IsRedirect() bool

IsRedirect returns true when this restart application unauthorized response has a 3xx status code

func (*RestartApplicationUnauthorized) IsServerError

func (o *RestartApplicationUnauthorized) IsServerError() bool

IsServerError returns true when this restart application unauthorized response has a 5xx status code

func (*RestartApplicationUnauthorized) IsSuccess

func (o *RestartApplicationUnauthorized) IsSuccess() bool

IsSuccess returns true when this restart application unauthorized response has a 2xx status code

func (*RestartApplicationUnauthorized) String

type StartApplicationNotFound

type StartApplicationNotFound struct {
}

StartApplicationNotFound describes a response with status code 404, with default header values.

Not found

func NewStartApplicationNotFound

func NewStartApplicationNotFound() *StartApplicationNotFound

NewStartApplicationNotFound creates a StartApplicationNotFound with default headers values

func (*StartApplicationNotFound) Code

func (o *StartApplicationNotFound) Code() int

Code gets the status code for the start application not found response

func (*StartApplicationNotFound) Error

func (o *StartApplicationNotFound) Error() string

func (*StartApplicationNotFound) IsClientError

func (o *StartApplicationNotFound) IsClientError() bool

IsClientError returns true when this start application not found response has a 4xx status code

func (*StartApplicationNotFound) IsCode

func (o *StartApplicationNotFound) IsCode(code int) bool

IsCode returns true when this start application not found response a status code equal to that given

func (*StartApplicationNotFound) IsRedirect

func (o *StartApplicationNotFound) IsRedirect() bool

IsRedirect returns true when this start application not found response has a 3xx status code

func (*StartApplicationNotFound) IsServerError

func (o *StartApplicationNotFound) IsServerError() bool

IsServerError returns true when this start application not found response has a 5xx status code

func (*StartApplicationNotFound) IsSuccess

func (o *StartApplicationNotFound) IsSuccess() bool

IsSuccess returns true when this start application not found response has a 2xx status code

func (*StartApplicationNotFound) String

func (o *StartApplicationNotFound) String() string

type StartApplicationOK

type StartApplicationOK struct {
}

StartApplicationOK describes a response with status code 200, with default header values.

Application started ok

func NewStartApplicationOK

func NewStartApplicationOK() *StartApplicationOK

NewStartApplicationOK creates a StartApplicationOK with default headers values

func (*StartApplicationOK) Code

func (o *StartApplicationOK) Code() int

Code gets the status code for the start application o k response

func (*StartApplicationOK) Error

func (o *StartApplicationOK) Error() string

func (*StartApplicationOK) IsClientError

func (o *StartApplicationOK) IsClientError() bool

IsClientError returns true when this start application o k response has a 4xx status code

func (*StartApplicationOK) IsCode

func (o *StartApplicationOK) IsCode(code int) bool

IsCode returns true when this start application o k response a status code equal to that given

func (*StartApplicationOK) IsRedirect

func (o *StartApplicationOK) IsRedirect() bool

IsRedirect returns true when this start application o k response has a 3xx status code

func (*StartApplicationOK) IsServerError

func (o *StartApplicationOK) IsServerError() bool

IsServerError returns true when this start application o k response has a 5xx status code

func (*StartApplicationOK) IsSuccess

func (o *StartApplicationOK) IsSuccess() bool

IsSuccess returns true when this start application o k response has a 2xx status code

func (*StartApplicationOK) String

func (o *StartApplicationOK) String() string

type StartApplicationParams

type StartApplicationParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

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

StartApplicationParams contains all the parameters to send to the API endpoint

for the start application operation.

Typically these are written to a http.Request.

func NewStartApplicationParams

func NewStartApplicationParams() *StartApplicationParams

NewStartApplicationParams creates a new StartApplicationParams 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 NewStartApplicationParamsWithContext

func NewStartApplicationParamsWithContext(ctx context.Context) *StartApplicationParams

NewStartApplicationParamsWithContext creates a new StartApplicationParams object with the ability to set a context for a request.

func NewStartApplicationParamsWithHTTPClient

func NewStartApplicationParamsWithHTTPClient(client *http.Client) *StartApplicationParams

NewStartApplicationParamsWithHTTPClient creates a new StartApplicationParams object with the ability to set a custom HTTPClient for a request.

func NewStartApplicationParamsWithTimeout

func NewStartApplicationParamsWithTimeout(timeout time.Duration) *StartApplicationParams

NewStartApplicationParamsWithTimeout creates a new StartApplicationParams object with the ability to set a timeout on a request.

func (*StartApplicationParams) SetAppName

func (o *StartApplicationParams) SetAppName(appName string)

SetAppName adds the appName to the start application params

func (*StartApplicationParams) SetContext

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

SetContext adds the context to the start application params

func (*StartApplicationParams) SetDefaults

func (o *StartApplicationParams) SetDefaults()

SetDefaults hydrates default values in the start application params (not the query body).

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

func (*StartApplicationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the start application params

func (*StartApplicationParams) SetImpersonateGroup

func (o *StartApplicationParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the start application params

func (*StartApplicationParams) SetImpersonateUser

func (o *StartApplicationParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the start application params

func (*StartApplicationParams) SetTimeout

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

SetTimeout adds the timeout to the start application params

func (*StartApplicationParams) WithAppName

func (o *StartApplicationParams) WithAppName(appName string) *StartApplicationParams

WithAppName adds the appName to the start application params

func (*StartApplicationParams) WithContext

WithContext adds the context to the start application params

func (*StartApplicationParams) WithDefaults

WithDefaults hydrates default values in the start application params (not the query body).

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

func (*StartApplicationParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the start application params

func (*StartApplicationParams) WithImpersonateGroup

func (o *StartApplicationParams) WithImpersonateGroup(impersonateGroup *string) *StartApplicationParams

WithImpersonateGroup adds the impersonateGroup to the start application params

func (*StartApplicationParams) WithImpersonateUser

func (o *StartApplicationParams) WithImpersonateUser(impersonateUser *string) *StartApplicationParams

WithImpersonateUser adds the impersonateUser to the start application params

func (*StartApplicationParams) WithTimeout

WithTimeout adds the timeout to the start application params

func (*StartApplicationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StartApplicationReader

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

StartApplicationReader is a Reader for the StartApplication structure.

func (*StartApplicationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StartApplicationUnauthorized

type StartApplicationUnauthorized struct {
}

StartApplicationUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewStartApplicationUnauthorized

func NewStartApplicationUnauthorized() *StartApplicationUnauthorized

NewStartApplicationUnauthorized creates a StartApplicationUnauthorized with default headers values

func (*StartApplicationUnauthorized) Code

Code gets the status code for the start application unauthorized response

func (*StartApplicationUnauthorized) Error

func (*StartApplicationUnauthorized) IsClientError

func (o *StartApplicationUnauthorized) IsClientError() bool

IsClientError returns true when this start application unauthorized response has a 4xx status code

func (*StartApplicationUnauthorized) IsCode

func (o *StartApplicationUnauthorized) IsCode(code int) bool

IsCode returns true when this start application unauthorized response a status code equal to that given

func (*StartApplicationUnauthorized) IsRedirect

func (o *StartApplicationUnauthorized) IsRedirect() bool

IsRedirect returns true when this start application unauthorized response has a 3xx status code

func (*StartApplicationUnauthorized) IsServerError

func (o *StartApplicationUnauthorized) IsServerError() bool

IsServerError returns true when this start application unauthorized response has a 5xx status code

func (*StartApplicationUnauthorized) IsSuccess

func (o *StartApplicationUnauthorized) IsSuccess() bool

IsSuccess returns true when this start application unauthorized response has a 2xx status code

func (*StartApplicationUnauthorized) String

type StopApplicationNotFound

type StopApplicationNotFound struct {
}

StopApplicationNotFound describes a response with status code 404, with default header values.

Not found

func NewStopApplicationNotFound

func NewStopApplicationNotFound() *StopApplicationNotFound

NewStopApplicationNotFound creates a StopApplicationNotFound with default headers values

func (*StopApplicationNotFound) Code

func (o *StopApplicationNotFound) Code() int

Code gets the status code for the stop application not found response

func (*StopApplicationNotFound) Error

func (o *StopApplicationNotFound) Error() string

func (*StopApplicationNotFound) IsClientError

func (o *StopApplicationNotFound) IsClientError() bool

IsClientError returns true when this stop application not found response has a 4xx status code

func (*StopApplicationNotFound) IsCode

func (o *StopApplicationNotFound) IsCode(code int) bool

IsCode returns true when this stop application not found response a status code equal to that given

func (*StopApplicationNotFound) IsRedirect

func (o *StopApplicationNotFound) IsRedirect() bool

IsRedirect returns true when this stop application not found response has a 3xx status code

func (*StopApplicationNotFound) IsServerError

func (o *StopApplicationNotFound) IsServerError() bool

IsServerError returns true when this stop application not found response has a 5xx status code

func (*StopApplicationNotFound) IsSuccess

func (o *StopApplicationNotFound) IsSuccess() bool

IsSuccess returns true when this stop application not found response has a 2xx status code

func (*StopApplicationNotFound) String

func (o *StopApplicationNotFound) String() string

type StopApplicationOK

type StopApplicationOK struct {
}

StopApplicationOK describes a response with status code 200, with default header values.

Application stopped ok

func NewStopApplicationOK

func NewStopApplicationOK() *StopApplicationOK

NewStopApplicationOK creates a StopApplicationOK with default headers values

func (*StopApplicationOK) Code

func (o *StopApplicationOK) Code() int

Code gets the status code for the stop application o k response

func (*StopApplicationOK) Error

func (o *StopApplicationOK) Error() string

func (*StopApplicationOK) IsClientError

func (o *StopApplicationOK) IsClientError() bool

IsClientError returns true when this stop application o k response has a 4xx status code

func (*StopApplicationOK) IsCode

func (o *StopApplicationOK) IsCode(code int) bool

IsCode returns true when this stop application o k response a status code equal to that given

func (*StopApplicationOK) IsRedirect

func (o *StopApplicationOK) IsRedirect() bool

IsRedirect returns true when this stop application o k response has a 3xx status code

func (*StopApplicationOK) IsServerError

func (o *StopApplicationOK) IsServerError() bool

IsServerError returns true when this stop application o k response has a 5xx status code

func (*StopApplicationOK) IsSuccess

func (o *StopApplicationOK) IsSuccess() bool

IsSuccess returns true when this stop application o k response has a 2xx status code

func (*StopApplicationOK) String

func (o *StopApplicationOK) String() string

type StopApplicationParams

type StopApplicationParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

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

StopApplicationParams contains all the parameters to send to the API endpoint

for the stop application operation.

Typically these are written to a http.Request.

func NewStopApplicationParams

func NewStopApplicationParams() *StopApplicationParams

NewStopApplicationParams creates a new StopApplicationParams 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 NewStopApplicationParamsWithContext

func NewStopApplicationParamsWithContext(ctx context.Context) *StopApplicationParams

NewStopApplicationParamsWithContext creates a new StopApplicationParams object with the ability to set a context for a request.

func NewStopApplicationParamsWithHTTPClient

func NewStopApplicationParamsWithHTTPClient(client *http.Client) *StopApplicationParams

NewStopApplicationParamsWithHTTPClient creates a new StopApplicationParams object with the ability to set a custom HTTPClient for a request.

func NewStopApplicationParamsWithTimeout

func NewStopApplicationParamsWithTimeout(timeout time.Duration) *StopApplicationParams

NewStopApplicationParamsWithTimeout creates a new StopApplicationParams object with the ability to set a timeout on a request.

func (*StopApplicationParams) SetAppName

func (o *StopApplicationParams) SetAppName(appName string)

SetAppName adds the appName to the stop application params

func (*StopApplicationParams) SetContext

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

SetContext adds the context to the stop application params

func (*StopApplicationParams) SetDefaults

func (o *StopApplicationParams) SetDefaults()

SetDefaults hydrates default values in the stop application params (not the query body).

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

func (*StopApplicationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the stop application params

func (*StopApplicationParams) SetImpersonateGroup

func (o *StopApplicationParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the stop application params

func (*StopApplicationParams) SetImpersonateUser

func (o *StopApplicationParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the stop application params

func (*StopApplicationParams) SetTimeout

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

SetTimeout adds the timeout to the stop application params

func (*StopApplicationParams) WithAppName

func (o *StopApplicationParams) WithAppName(appName string) *StopApplicationParams

WithAppName adds the appName to the stop application params

func (*StopApplicationParams) WithContext

WithContext adds the context to the stop application params

func (*StopApplicationParams) WithDefaults

func (o *StopApplicationParams) WithDefaults() *StopApplicationParams

WithDefaults hydrates default values in the stop application params (not the query body).

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

func (*StopApplicationParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the stop application params

func (*StopApplicationParams) WithImpersonateGroup

func (o *StopApplicationParams) WithImpersonateGroup(impersonateGroup *string) *StopApplicationParams

WithImpersonateGroup adds the impersonateGroup to the stop application params

func (*StopApplicationParams) WithImpersonateUser

func (o *StopApplicationParams) WithImpersonateUser(impersonateUser *string) *StopApplicationParams

WithImpersonateUser adds the impersonateUser to the stop application params

func (*StopApplicationParams) WithTimeout

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

WithTimeout adds the timeout to the stop application params

func (*StopApplicationParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type StopApplicationReader

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

StopApplicationReader is a Reader for the StopApplication structure.

func (*StopApplicationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StopApplicationUnauthorized

type StopApplicationUnauthorized struct {
}

StopApplicationUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewStopApplicationUnauthorized

func NewStopApplicationUnauthorized() *StopApplicationUnauthorized

NewStopApplicationUnauthorized creates a StopApplicationUnauthorized with default headers values

func (*StopApplicationUnauthorized) Code

func (o *StopApplicationUnauthorized) Code() int

Code gets the status code for the stop application unauthorized response

func (*StopApplicationUnauthorized) Error

func (*StopApplicationUnauthorized) IsClientError

func (o *StopApplicationUnauthorized) IsClientError() bool

IsClientError returns true when this stop application unauthorized response has a 4xx status code

func (*StopApplicationUnauthorized) IsCode

func (o *StopApplicationUnauthorized) IsCode(code int) bool

IsCode returns true when this stop application unauthorized response a status code equal to that given

func (*StopApplicationUnauthorized) IsRedirect

func (o *StopApplicationUnauthorized) IsRedirect() bool

IsRedirect returns true when this stop application unauthorized response has a 3xx status code

func (*StopApplicationUnauthorized) IsServerError

func (o *StopApplicationUnauthorized) IsServerError() bool

IsServerError returns true when this stop application unauthorized response has a 5xx status code

func (*StopApplicationUnauthorized) IsSuccess

func (o *StopApplicationUnauthorized) IsSuccess() bool

IsSuccess returns true when this stop application unauthorized response has a 2xx status code

func (*StopApplicationUnauthorized) String

func (o *StopApplicationUnauthorized) String() string

type TriggerPipelineBuildDeployForbidden

type TriggerPipelineBuildDeployForbidden struct {
}

TriggerPipelineBuildDeployForbidden describes a response with status code 403, with default header values.

Forbidden

func NewTriggerPipelineBuildDeployForbidden

func NewTriggerPipelineBuildDeployForbidden() *TriggerPipelineBuildDeployForbidden

NewTriggerPipelineBuildDeployForbidden creates a TriggerPipelineBuildDeployForbidden with default headers values

func (*TriggerPipelineBuildDeployForbidden) Code

Code gets the status code for the trigger pipeline build deploy forbidden response

func (*TriggerPipelineBuildDeployForbidden) Error

func (*TriggerPipelineBuildDeployForbidden) IsClientError

func (o *TriggerPipelineBuildDeployForbidden) IsClientError() bool

IsClientError returns true when this trigger pipeline build deploy forbidden response has a 4xx status code

func (*TriggerPipelineBuildDeployForbidden) IsCode

IsCode returns true when this trigger pipeline build deploy forbidden response a status code equal to that given

func (*TriggerPipelineBuildDeployForbidden) IsRedirect

func (o *TriggerPipelineBuildDeployForbidden) IsRedirect() bool

IsRedirect returns true when this trigger pipeline build deploy forbidden response has a 3xx status code

func (*TriggerPipelineBuildDeployForbidden) IsServerError

func (o *TriggerPipelineBuildDeployForbidden) IsServerError() bool

IsServerError returns true when this trigger pipeline build deploy forbidden response has a 5xx status code

func (*TriggerPipelineBuildDeployForbidden) IsSuccess

IsSuccess returns true when this trigger pipeline build deploy forbidden response has a 2xx status code

func (*TriggerPipelineBuildDeployForbidden) String

type TriggerPipelineBuildDeployNotFound

type TriggerPipelineBuildDeployNotFound struct {
}

TriggerPipelineBuildDeployNotFound describes a response with status code 404, with default header values.

Not found

func NewTriggerPipelineBuildDeployNotFound

func NewTriggerPipelineBuildDeployNotFound() *TriggerPipelineBuildDeployNotFound

NewTriggerPipelineBuildDeployNotFound creates a TriggerPipelineBuildDeployNotFound with default headers values

func (*TriggerPipelineBuildDeployNotFound) Code

Code gets the status code for the trigger pipeline build deploy not found response

func (*TriggerPipelineBuildDeployNotFound) Error

func (*TriggerPipelineBuildDeployNotFound) IsClientError

func (o *TriggerPipelineBuildDeployNotFound) IsClientError() bool

IsClientError returns true when this trigger pipeline build deploy not found response has a 4xx status code

func (*TriggerPipelineBuildDeployNotFound) IsCode

IsCode returns true when this trigger pipeline build deploy not found response a status code equal to that given

func (*TriggerPipelineBuildDeployNotFound) IsRedirect

func (o *TriggerPipelineBuildDeployNotFound) IsRedirect() bool

IsRedirect returns true when this trigger pipeline build deploy not found response has a 3xx status code

func (*TriggerPipelineBuildDeployNotFound) IsServerError

func (o *TriggerPipelineBuildDeployNotFound) IsServerError() bool

IsServerError returns true when this trigger pipeline build deploy not found response has a 5xx status code

func (*TriggerPipelineBuildDeployNotFound) IsSuccess

IsSuccess returns true when this trigger pipeline build deploy not found response has a 2xx status code

func (*TriggerPipelineBuildDeployNotFound) String

type TriggerPipelineBuildDeployOK

type TriggerPipelineBuildDeployOK struct {
	Payload *models.JobSummary
}

TriggerPipelineBuildDeployOK describes a response with status code 200, with default header values.

Successful trigger pipeline

func NewTriggerPipelineBuildDeployOK

func NewTriggerPipelineBuildDeployOK() *TriggerPipelineBuildDeployOK

NewTriggerPipelineBuildDeployOK creates a TriggerPipelineBuildDeployOK with default headers values

func (*TriggerPipelineBuildDeployOK) Code

Code gets the status code for the trigger pipeline build deploy o k response

func (*TriggerPipelineBuildDeployOK) Error

func (*TriggerPipelineBuildDeployOK) GetPayload

func (*TriggerPipelineBuildDeployOK) IsClientError

func (o *TriggerPipelineBuildDeployOK) IsClientError() bool

IsClientError returns true when this trigger pipeline build deploy o k response has a 4xx status code

func (*TriggerPipelineBuildDeployOK) IsCode

func (o *TriggerPipelineBuildDeployOK) IsCode(code int) bool

IsCode returns true when this trigger pipeline build deploy o k response a status code equal to that given

func (*TriggerPipelineBuildDeployOK) IsRedirect

func (o *TriggerPipelineBuildDeployOK) IsRedirect() bool

IsRedirect returns true when this trigger pipeline build deploy o k response has a 3xx status code

func (*TriggerPipelineBuildDeployOK) IsServerError

func (o *TriggerPipelineBuildDeployOK) IsServerError() bool

IsServerError returns true when this trigger pipeline build deploy o k response has a 5xx status code

func (*TriggerPipelineBuildDeployOK) IsSuccess

func (o *TriggerPipelineBuildDeployOK) IsSuccess() bool

IsSuccess returns true when this trigger pipeline build deploy o k response has a 2xx status code

func (*TriggerPipelineBuildDeployOK) String

type TriggerPipelineBuildDeployParams

type TriggerPipelineBuildDeployParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* PipelineParametersBuild.

	   Pipeline parameters
	*/
	PipelineParametersBuild *models.PipelineParametersBuild

	/* AppName.

	   Name of application
	*/
	AppName string

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

TriggerPipelineBuildDeployParams contains all the parameters to send to the API endpoint

for the trigger pipeline build deploy operation.

Typically these are written to a http.Request.

func NewTriggerPipelineBuildDeployParams

func NewTriggerPipelineBuildDeployParams() *TriggerPipelineBuildDeployParams

NewTriggerPipelineBuildDeployParams creates a new TriggerPipelineBuildDeployParams 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 NewTriggerPipelineBuildDeployParamsWithContext

func NewTriggerPipelineBuildDeployParamsWithContext(ctx context.Context) *TriggerPipelineBuildDeployParams

NewTriggerPipelineBuildDeployParamsWithContext creates a new TriggerPipelineBuildDeployParams object with the ability to set a context for a request.

func NewTriggerPipelineBuildDeployParamsWithHTTPClient

func NewTriggerPipelineBuildDeployParamsWithHTTPClient(client *http.Client) *TriggerPipelineBuildDeployParams

NewTriggerPipelineBuildDeployParamsWithHTTPClient creates a new TriggerPipelineBuildDeployParams object with the ability to set a custom HTTPClient for a request.

func NewTriggerPipelineBuildDeployParamsWithTimeout

func NewTriggerPipelineBuildDeployParamsWithTimeout(timeout time.Duration) *TriggerPipelineBuildDeployParams

NewTriggerPipelineBuildDeployParamsWithTimeout creates a new TriggerPipelineBuildDeployParams object with the ability to set a timeout on a request.

func (*TriggerPipelineBuildDeployParams) SetAppName

func (o *TriggerPipelineBuildDeployParams) SetAppName(appName string)

SetAppName adds the appName to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) SetContext

SetContext adds the context to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) SetDefaults

func (o *TriggerPipelineBuildDeployParams) SetDefaults()

SetDefaults hydrates default values in the trigger pipeline build deploy params (not the query body).

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

func (*TriggerPipelineBuildDeployParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) SetImpersonateGroup

func (o *TriggerPipelineBuildDeployParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) SetImpersonateUser

func (o *TriggerPipelineBuildDeployParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) SetPipelineParametersBuild

func (o *TriggerPipelineBuildDeployParams) SetPipelineParametersBuild(pipelineParametersBuild *models.PipelineParametersBuild)

SetPipelineParametersBuild adds the pipelineParametersBuild to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) SetTimeout

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

SetTimeout adds the timeout to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) WithAppName

WithAppName adds the appName to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) WithContext

WithContext adds the context to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) WithDefaults

WithDefaults hydrates default values in the trigger pipeline build deploy params (not the query body).

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

func (*TriggerPipelineBuildDeployParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) WithImpersonateGroup

func (o *TriggerPipelineBuildDeployParams) WithImpersonateGroup(impersonateGroup *string) *TriggerPipelineBuildDeployParams

WithImpersonateGroup adds the impersonateGroup to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) WithImpersonateUser

func (o *TriggerPipelineBuildDeployParams) WithImpersonateUser(impersonateUser *string) *TriggerPipelineBuildDeployParams

WithImpersonateUser adds the impersonateUser to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) WithPipelineParametersBuild

func (o *TriggerPipelineBuildDeployParams) WithPipelineParametersBuild(pipelineParametersBuild *models.PipelineParametersBuild) *TriggerPipelineBuildDeployParams

WithPipelineParametersBuild adds the pipelineParametersBuild to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) WithTimeout

WithTimeout adds the timeout to the trigger pipeline build deploy params

func (*TriggerPipelineBuildDeployParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TriggerPipelineBuildDeployReader

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

TriggerPipelineBuildDeployReader is a Reader for the TriggerPipelineBuildDeploy structure.

func (*TriggerPipelineBuildDeployReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TriggerPipelineBuildForbidden

type TriggerPipelineBuildForbidden struct {
}

TriggerPipelineBuildForbidden describes a response with status code 403, with default header values.

Forbidden

func NewTriggerPipelineBuildForbidden

func NewTriggerPipelineBuildForbidden() *TriggerPipelineBuildForbidden

NewTriggerPipelineBuildForbidden creates a TriggerPipelineBuildForbidden with default headers values

func (*TriggerPipelineBuildForbidden) Code

Code gets the status code for the trigger pipeline build forbidden response

func (*TriggerPipelineBuildForbidden) Error

func (*TriggerPipelineBuildForbidden) IsClientError

func (o *TriggerPipelineBuildForbidden) IsClientError() bool

IsClientError returns true when this trigger pipeline build forbidden response has a 4xx status code

func (*TriggerPipelineBuildForbidden) IsCode

func (o *TriggerPipelineBuildForbidden) IsCode(code int) bool

IsCode returns true when this trigger pipeline build forbidden response a status code equal to that given

func (*TriggerPipelineBuildForbidden) IsRedirect

func (o *TriggerPipelineBuildForbidden) IsRedirect() bool

IsRedirect returns true when this trigger pipeline build forbidden response has a 3xx status code

func (*TriggerPipelineBuildForbidden) IsServerError

func (o *TriggerPipelineBuildForbidden) IsServerError() bool

IsServerError returns true when this trigger pipeline build forbidden response has a 5xx status code

func (*TriggerPipelineBuildForbidden) IsSuccess

func (o *TriggerPipelineBuildForbidden) IsSuccess() bool

IsSuccess returns true when this trigger pipeline build forbidden response has a 2xx status code

func (*TriggerPipelineBuildForbidden) String

type TriggerPipelineBuildNotFound

type TriggerPipelineBuildNotFound struct {
}

TriggerPipelineBuildNotFound describes a response with status code 404, with default header values.

Not found

func NewTriggerPipelineBuildNotFound

func NewTriggerPipelineBuildNotFound() *TriggerPipelineBuildNotFound

NewTriggerPipelineBuildNotFound creates a TriggerPipelineBuildNotFound with default headers values

func (*TriggerPipelineBuildNotFound) Code

Code gets the status code for the trigger pipeline build not found response

func (*TriggerPipelineBuildNotFound) Error

func (*TriggerPipelineBuildNotFound) IsClientError

func (o *TriggerPipelineBuildNotFound) IsClientError() bool

IsClientError returns true when this trigger pipeline build not found response has a 4xx status code

func (*TriggerPipelineBuildNotFound) IsCode

func (o *TriggerPipelineBuildNotFound) IsCode(code int) bool

IsCode returns true when this trigger pipeline build not found response a status code equal to that given

func (*TriggerPipelineBuildNotFound) IsRedirect

func (o *TriggerPipelineBuildNotFound) IsRedirect() bool

IsRedirect returns true when this trigger pipeline build not found response has a 3xx status code

func (*TriggerPipelineBuildNotFound) IsServerError

func (o *TriggerPipelineBuildNotFound) IsServerError() bool

IsServerError returns true when this trigger pipeline build not found response has a 5xx status code

func (*TriggerPipelineBuildNotFound) IsSuccess

func (o *TriggerPipelineBuildNotFound) IsSuccess() bool

IsSuccess returns true when this trigger pipeline build not found response has a 2xx status code

func (*TriggerPipelineBuildNotFound) String

type TriggerPipelineBuildOK

type TriggerPipelineBuildOK struct {
	Payload *models.JobSummary
}

TriggerPipelineBuildOK describes a response with status code 200, with default header values.

Successful trigger pipeline

func NewTriggerPipelineBuildOK

func NewTriggerPipelineBuildOK() *TriggerPipelineBuildOK

NewTriggerPipelineBuildOK creates a TriggerPipelineBuildOK with default headers values

func (*TriggerPipelineBuildOK) Code

func (o *TriggerPipelineBuildOK) Code() int

Code gets the status code for the trigger pipeline build o k response

func (*TriggerPipelineBuildOK) Error

func (o *TriggerPipelineBuildOK) Error() string

func (*TriggerPipelineBuildOK) GetPayload

func (o *TriggerPipelineBuildOK) GetPayload() *models.JobSummary

func (*TriggerPipelineBuildOK) IsClientError

func (o *TriggerPipelineBuildOK) IsClientError() bool

IsClientError returns true when this trigger pipeline build o k response has a 4xx status code

func (*TriggerPipelineBuildOK) IsCode

func (o *TriggerPipelineBuildOK) IsCode(code int) bool

IsCode returns true when this trigger pipeline build o k response a status code equal to that given

func (*TriggerPipelineBuildOK) IsRedirect

func (o *TriggerPipelineBuildOK) IsRedirect() bool

IsRedirect returns true when this trigger pipeline build o k response has a 3xx status code

func (*TriggerPipelineBuildOK) IsServerError

func (o *TriggerPipelineBuildOK) IsServerError() bool

IsServerError returns true when this trigger pipeline build o k response has a 5xx status code

func (*TriggerPipelineBuildOK) IsSuccess

func (o *TriggerPipelineBuildOK) IsSuccess() bool

IsSuccess returns true when this trigger pipeline build o k response has a 2xx status code

func (*TriggerPipelineBuildOK) String

func (o *TriggerPipelineBuildOK) String() string

type TriggerPipelineBuildParams

type TriggerPipelineBuildParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* PipelineParametersBuild.

	   Pipeline parameters
	*/
	PipelineParametersBuild *models.PipelineParametersBuild

	/* AppName.

	   Name of application
	*/
	AppName string

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

TriggerPipelineBuildParams contains all the parameters to send to the API endpoint

for the trigger pipeline build operation.

Typically these are written to a http.Request.

func NewTriggerPipelineBuildParams

func NewTriggerPipelineBuildParams() *TriggerPipelineBuildParams

NewTriggerPipelineBuildParams creates a new TriggerPipelineBuildParams 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 NewTriggerPipelineBuildParamsWithContext

func NewTriggerPipelineBuildParamsWithContext(ctx context.Context) *TriggerPipelineBuildParams

NewTriggerPipelineBuildParamsWithContext creates a new TriggerPipelineBuildParams object with the ability to set a context for a request.

func NewTriggerPipelineBuildParamsWithHTTPClient

func NewTriggerPipelineBuildParamsWithHTTPClient(client *http.Client) *TriggerPipelineBuildParams

NewTriggerPipelineBuildParamsWithHTTPClient creates a new TriggerPipelineBuildParams object with the ability to set a custom HTTPClient for a request.

func NewTriggerPipelineBuildParamsWithTimeout

func NewTriggerPipelineBuildParamsWithTimeout(timeout time.Duration) *TriggerPipelineBuildParams

NewTriggerPipelineBuildParamsWithTimeout creates a new TriggerPipelineBuildParams object with the ability to set a timeout on a request.

func (*TriggerPipelineBuildParams) SetAppName

func (o *TriggerPipelineBuildParams) SetAppName(appName string)

SetAppName adds the appName to the trigger pipeline build params

func (*TriggerPipelineBuildParams) SetContext

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

SetContext adds the context to the trigger pipeline build params

func (*TriggerPipelineBuildParams) SetDefaults

func (o *TriggerPipelineBuildParams) SetDefaults()

SetDefaults hydrates default values in the trigger pipeline build params (not the query body).

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

func (*TriggerPipelineBuildParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the trigger pipeline build params

func (*TriggerPipelineBuildParams) SetImpersonateGroup

func (o *TriggerPipelineBuildParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the trigger pipeline build params

func (*TriggerPipelineBuildParams) SetImpersonateUser

func (o *TriggerPipelineBuildParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the trigger pipeline build params

func (*TriggerPipelineBuildParams) SetPipelineParametersBuild

func (o *TriggerPipelineBuildParams) SetPipelineParametersBuild(pipelineParametersBuild *models.PipelineParametersBuild)

SetPipelineParametersBuild adds the pipelineParametersBuild to the trigger pipeline build params

func (*TriggerPipelineBuildParams) SetTimeout

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

SetTimeout adds the timeout to the trigger pipeline build params

func (*TriggerPipelineBuildParams) WithAppName

WithAppName adds the appName to the trigger pipeline build params

func (*TriggerPipelineBuildParams) WithContext

WithContext adds the context to the trigger pipeline build params

func (*TriggerPipelineBuildParams) WithDefaults

WithDefaults hydrates default values in the trigger pipeline build params (not the query body).

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

func (*TriggerPipelineBuildParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the trigger pipeline build params

func (*TriggerPipelineBuildParams) WithImpersonateGroup

func (o *TriggerPipelineBuildParams) WithImpersonateGroup(impersonateGroup *string) *TriggerPipelineBuildParams

WithImpersonateGroup adds the impersonateGroup to the trigger pipeline build params

func (*TriggerPipelineBuildParams) WithImpersonateUser

func (o *TriggerPipelineBuildParams) WithImpersonateUser(impersonateUser *string) *TriggerPipelineBuildParams

WithImpersonateUser adds the impersonateUser to the trigger pipeline build params

func (*TriggerPipelineBuildParams) WithPipelineParametersBuild

func (o *TriggerPipelineBuildParams) WithPipelineParametersBuild(pipelineParametersBuild *models.PipelineParametersBuild) *TriggerPipelineBuildParams

WithPipelineParametersBuild adds the pipelineParametersBuild to the trigger pipeline build params

func (*TriggerPipelineBuildParams) WithTimeout

WithTimeout adds the timeout to the trigger pipeline build params

func (*TriggerPipelineBuildParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TriggerPipelineBuildReader

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

TriggerPipelineBuildReader is a Reader for the TriggerPipelineBuild structure.

func (*TriggerPipelineBuildReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TriggerPipelineDeployForbidden

type TriggerPipelineDeployForbidden struct {
}

TriggerPipelineDeployForbidden describes a response with status code 403, with default header values.

Forbidden

func NewTriggerPipelineDeployForbidden

func NewTriggerPipelineDeployForbidden() *TriggerPipelineDeployForbidden

NewTriggerPipelineDeployForbidden creates a TriggerPipelineDeployForbidden with default headers values

func (*TriggerPipelineDeployForbidden) Code

Code gets the status code for the trigger pipeline deploy forbidden response

func (*TriggerPipelineDeployForbidden) Error

func (*TriggerPipelineDeployForbidden) IsClientError

func (o *TriggerPipelineDeployForbidden) IsClientError() bool

IsClientError returns true when this trigger pipeline deploy forbidden response has a 4xx status code

func (*TriggerPipelineDeployForbidden) IsCode

func (o *TriggerPipelineDeployForbidden) IsCode(code int) bool

IsCode returns true when this trigger pipeline deploy forbidden response a status code equal to that given

func (*TriggerPipelineDeployForbidden) IsRedirect

func (o *TriggerPipelineDeployForbidden) IsRedirect() bool

IsRedirect returns true when this trigger pipeline deploy forbidden response has a 3xx status code

func (*TriggerPipelineDeployForbidden) IsServerError

func (o *TriggerPipelineDeployForbidden) IsServerError() bool

IsServerError returns true when this trigger pipeline deploy forbidden response has a 5xx status code

func (*TriggerPipelineDeployForbidden) IsSuccess

func (o *TriggerPipelineDeployForbidden) IsSuccess() bool

IsSuccess returns true when this trigger pipeline deploy forbidden response has a 2xx status code

func (*TriggerPipelineDeployForbidden) String

type TriggerPipelineDeployNotFound

type TriggerPipelineDeployNotFound struct {
}

TriggerPipelineDeployNotFound describes a response with status code 404, with default header values.

Not found

func NewTriggerPipelineDeployNotFound

func NewTriggerPipelineDeployNotFound() *TriggerPipelineDeployNotFound

NewTriggerPipelineDeployNotFound creates a TriggerPipelineDeployNotFound with default headers values

func (*TriggerPipelineDeployNotFound) Code

Code gets the status code for the trigger pipeline deploy not found response

func (*TriggerPipelineDeployNotFound) Error

func (*TriggerPipelineDeployNotFound) IsClientError

func (o *TriggerPipelineDeployNotFound) IsClientError() bool

IsClientError returns true when this trigger pipeline deploy not found response has a 4xx status code

func (*TriggerPipelineDeployNotFound) IsCode

func (o *TriggerPipelineDeployNotFound) IsCode(code int) bool

IsCode returns true when this trigger pipeline deploy not found response a status code equal to that given

func (*TriggerPipelineDeployNotFound) IsRedirect

func (o *TriggerPipelineDeployNotFound) IsRedirect() bool

IsRedirect returns true when this trigger pipeline deploy not found response has a 3xx status code

func (*TriggerPipelineDeployNotFound) IsServerError

func (o *TriggerPipelineDeployNotFound) IsServerError() bool

IsServerError returns true when this trigger pipeline deploy not found response has a 5xx status code

func (*TriggerPipelineDeployNotFound) IsSuccess

func (o *TriggerPipelineDeployNotFound) IsSuccess() bool

IsSuccess returns true when this trigger pipeline deploy not found response has a 2xx status code

func (*TriggerPipelineDeployNotFound) String

type TriggerPipelineDeployOK

type TriggerPipelineDeployOK struct {
	Payload *models.JobSummary
}

TriggerPipelineDeployOK describes a response with status code 200, with default header values.

Successful trigger pipeline

func NewTriggerPipelineDeployOK

func NewTriggerPipelineDeployOK() *TriggerPipelineDeployOK

NewTriggerPipelineDeployOK creates a TriggerPipelineDeployOK with default headers values

func (*TriggerPipelineDeployOK) Code

func (o *TriggerPipelineDeployOK) Code() int

Code gets the status code for the trigger pipeline deploy o k response

func (*TriggerPipelineDeployOK) Error

func (o *TriggerPipelineDeployOK) Error() string

func (*TriggerPipelineDeployOK) GetPayload

func (o *TriggerPipelineDeployOK) GetPayload() *models.JobSummary

func (*TriggerPipelineDeployOK) IsClientError

func (o *TriggerPipelineDeployOK) IsClientError() bool

IsClientError returns true when this trigger pipeline deploy o k response has a 4xx status code

func (*TriggerPipelineDeployOK) IsCode

func (o *TriggerPipelineDeployOK) IsCode(code int) bool

IsCode returns true when this trigger pipeline deploy o k response a status code equal to that given

func (*TriggerPipelineDeployOK) IsRedirect

func (o *TriggerPipelineDeployOK) IsRedirect() bool

IsRedirect returns true when this trigger pipeline deploy o k response has a 3xx status code

func (*TriggerPipelineDeployOK) IsServerError

func (o *TriggerPipelineDeployOK) IsServerError() bool

IsServerError returns true when this trigger pipeline deploy o k response has a 5xx status code

func (*TriggerPipelineDeployOK) IsSuccess

func (o *TriggerPipelineDeployOK) IsSuccess() bool

IsSuccess returns true when this trigger pipeline deploy o k response has a 2xx status code

func (*TriggerPipelineDeployOK) String

func (o *TriggerPipelineDeployOK) String() string

type TriggerPipelineDeployParams

type TriggerPipelineDeployParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* PipelineParametersDeploy.

	   Pipeline parameters
	*/
	PipelineParametersDeploy *models.PipelineParametersDeploy

	/* AppName.

	   Name of application
	*/
	AppName string

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

TriggerPipelineDeployParams contains all the parameters to send to the API endpoint

for the trigger pipeline deploy operation.

Typically these are written to a http.Request.

func NewTriggerPipelineDeployParams

func NewTriggerPipelineDeployParams() *TriggerPipelineDeployParams

NewTriggerPipelineDeployParams creates a new TriggerPipelineDeployParams 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 NewTriggerPipelineDeployParamsWithContext

func NewTriggerPipelineDeployParamsWithContext(ctx context.Context) *TriggerPipelineDeployParams

NewTriggerPipelineDeployParamsWithContext creates a new TriggerPipelineDeployParams object with the ability to set a context for a request.

func NewTriggerPipelineDeployParamsWithHTTPClient

func NewTriggerPipelineDeployParamsWithHTTPClient(client *http.Client) *TriggerPipelineDeployParams

NewTriggerPipelineDeployParamsWithHTTPClient creates a new TriggerPipelineDeployParams object with the ability to set a custom HTTPClient for a request.

func NewTriggerPipelineDeployParamsWithTimeout

func NewTriggerPipelineDeployParamsWithTimeout(timeout time.Duration) *TriggerPipelineDeployParams

NewTriggerPipelineDeployParamsWithTimeout creates a new TriggerPipelineDeployParams object with the ability to set a timeout on a request.

func (*TriggerPipelineDeployParams) SetAppName

func (o *TriggerPipelineDeployParams) SetAppName(appName string)

SetAppName adds the appName to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) SetContext

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

SetContext adds the context to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) SetDefaults

func (o *TriggerPipelineDeployParams) SetDefaults()

SetDefaults hydrates default values in the trigger pipeline deploy params (not the query body).

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

func (*TriggerPipelineDeployParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) SetImpersonateGroup

func (o *TriggerPipelineDeployParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) SetImpersonateUser

func (o *TriggerPipelineDeployParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) SetPipelineParametersDeploy

func (o *TriggerPipelineDeployParams) SetPipelineParametersDeploy(pipelineParametersDeploy *models.PipelineParametersDeploy)

SetPipelineParametersDeploy adds the pipelineParametersDeploy to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) SetTimeout

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

SetTimeout adds the timeout to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) WithAppName

WithAppName adds the appName to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) WithContext

WithContext adds the context to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) WithDefaults

WithDefaults hydrates default values in the trigger pipeline deploy params (not the query body).

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

func (*TriggerPipelineDeployParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) WithImpersonateGroup

func (o *TriggerPipelineDeployParams) WithImpersonateGroup(impersonateGroup *string) *TriggerPipelineDeployParams

WithImpersonateGroup adds the impersonateGroup to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) WithImpersonateUser

func (o *TriggerPipelineDeployParams) WithImpersonateUser(impersonateUser *string) *TriggerPipelineDeployParams

WithImpersonateUser adds the impersonateUser to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) WithPipelineParametersDeploy

func (o *TriggerPipelineDeployParams) WithPipelineParametersDeploy(pipelineParametersDeploy *models.PipelineParametersDeploy) *TriggerPipelineDeployParams

WithPipelineParametersDeploy adds the pipelineParametersDeploy to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) WithTimeout

WithTimeout adds the timeout to the trigger pipeline deploy params

func (*TriggerPipelineDeployParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TriggerPipelineDeployReader

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

TriggerPipelineDeployReader is a Reader for the TriggerPipelineDeploy structure.

func (*TriggerPipelineDeployReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TriggerPipelinePromoteNotFound

type TriggerPipelinePromoteNotFound struct {
}

TriggerPipelinePromoteNotFound describes a response with status code 404, with default header values.

Not found

func NewTriggerPipelinePromoteNotFound

func NewTriggerPipelinePromoteNotFound() *TriggerPipelinePromoteNotFound

NewTriggerPipelinePromoteNotFound creates a TriggerPipelinePromoteNotFound with default headers values

func (*TriggerPipelinePromoteNotFound) Code

Code gets the status code for the trigger pipeline promote not found response

func (*TriggerPipelinePromoteNotFound) Error

func (*TriggerPipelinePromoteNotFound) IsClientError

func (o *TriggerPipelinePromoteNotFound) IsClientError() bool

IsClientError returns true when this trigger pipeline promote not found response has a 4xx status code

func (*TriggerPipelinePromoteNotFound) IsCode

func (o *TriggerPipelinePromoteNotFound) IsCode(code int) bool

IsCode returns true when this trigger pipeline promote not found response a status code equal to that given

func (*TriggerPipelinePromoteNotFound) IsRedirect

func (o *TriggerPipelinePromoteNotFound) IsRedirect() bool

IsRedirect returns true when this trigger pipeline promote not found response has a 3xx status code

func (*TriggerPipelinePromoteNotFound) IsServerError

func (o *TriggerPipelinePromoteNotFound) IsServerError() bool

IsServerError returns true when this trigger pipeline promote not found response has a 5xx status code

func (*TriggerPipelinePromoteNotFound) IsSuccess

func (o *TriggerPipelinePromoteNotFound) IsSuccess() bool

IsSuccess returns true when this trigger pipeline promote not found response has a 2xx status code

func (*TriggerPipelinePromoteNotFound) String

type TriggerPipelinePromoteOK

type TriggerPipelinePromoteOK struct {
	Payload *models.JobSummary
}

TriggerPipelinePromoteOK describes a response with status code 200, with default header values.

Successful trigger pipeline

func NewTriggerPipelinePromoteOK

func NewTriggerPipelinePromoteOK() *TriggerPipelinePromoteOK

NewTriggerPipelinePromoteOK creates a TriggerPipelinePromoteOK with default headers values

func (*TriggerPipelinePromoteOK) Code

func (o *TriggerPipelinePromoteOK) Code() int

Code gets the status code for the trigger pipeline promote o k response

func (*TriggerPipelinePromoteOK) Error

func (o *TriggerPipelinePromoteOK) Error() string

func (*TriggerPipelinePromoteOK) GetPayload

func (o *TriggerPipelinePromoteOK) GetPayload() *models.JobSummary

func (*TriggerPipelinePromoteOK) IsClientError

func (o *TriggerPipelinePromoteOK) IsClientError() bool

IsClientError returns true when this trigger pipeline promote o k response has a 4xx status code

func (*TriggerPipelinePromoteOK) IsCode

func (o *TriggerPipelinePromoteOK) IsCode(code int) bool

IsCode returns true when this trigger pipeline promote o k response a status code equal to that given

func (*TriggerPipelinePromoteOK) IsRedirect

func (o *TriggerPipelinePromoteOK) IsRedirect() bool

IsRedirect returns true when this trigger pipeline promote o k response has a 3xx status code

func (*TriggerPipelinePromoteOK) IsServerError

func (o *TriggerPipelinePromoteOK) IsServerError() bool

IsServerError returns true when this trigger pipeline promote o k response has a 5xx status code

func (*TriggerPipelinePromoteOK) IsSuccess

func (o *TriggerPipelinePromoteOK) IsSuccess() bool

IsSuccess returns true when this trigger pipeline promote o k response has a 2xx status code

func (*TriggerPipelinePromoteOK) String

func (o *TriggerPipelinePromoteOK) String() string

type TriggerPipelinePromoteParams

type TriggerPipelinePromoteParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* PipelineParametersPromote.

	   Pipeline parameters
	*/
	PipelineParametersPromote *models.PipelineParametersPromote

	/* AppName.

	   Name of application
	*/
	AppName string

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

TriggerPipelinePromoteParams contains all the parameters to send to the API endpoint

for the trigger pipeline promote operation.

Typically these are written to a http.Request.

func NewTriggerPipelinePromoteParams

func NewTriggerPipelinePromoteParams() *TriggerPipelinePromoteParams

NewTriggerPipelinePromoteParams creates a new TriggerPipelinePromoteParams 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 NewTriggerPipelinePromoteParamsWithContext

func NewTriggerPipelinePromoteParamsWithContext(ctx context.Context) *TriggerPipelinePromoteParams

NewTriggerPipelinePromoteParamsWithContext creates a new TriggerPipelinePromoteParams object with the ability to set a context for a request.

func NewTriggerPipelinePromoteParamsWithHTTPClient

func NewTriggerPipelinePromoteParamsWithHTTPClient(client *http.Client) *TriggerPipelinePromoteParams

NewTriggerPipelinePromoteParamsWithHTTPClient creates a new TriggerPipelinePromoteParams object with the ability to set a custom HTTPClient for a request.

func NewTriggerPipelinePromoteParamsWithTimeout

func NewTriggerPipelinePromoteParamsWithTimeout(timeout time.Duration) *TriggerPipelinePromoteParams

NewTriggerPipelinePromoteParamsWithTimeout creates a new TriggerPipelinePromoteParams object with the ability to set a timeout on a request.

func (*TriggerPipelinePromoteParams) SetAppName

func (o *TriggerPipelinePromoteParams) SetAppName(appName string)

SetAppName adds the appName to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) SetContext

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

SetContext adds the context to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) SetDefaults

func (o *TriggerPipelinePromoteParams) SetDefaults()

SetDefaults hydrates default values in the trigger pipeline promote params (not the query body).

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

func (*TriggerPipelinePromoteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) SetImpersonateGroup

func (o *TriggerPipelinePromoteParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) SetImpersonateUser

func (o *TriggerPipelinePromoteParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) SetPipelineParametersPromote

func (o *TriggerPipelinePromoteParams) SetPipelineParametersPromote(pipelineParametersPromote *models.PipelineParametersPromote)

SetPipelineParametersPromote adds the pipelineParametersPromote to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) SetTimeout

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

SetTimeout adds the timeout to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) WithAppName

WithAppName adds the appName to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) WithContext

WithContext adds the context to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) WithDefaults

WithDefaults hydrates default values in the trigger pipeline promote params (not the query body).

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

func (*TriggerPipelinePromoteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) WithImpersonateGroup

func (o *TriggerPipelinePromoteParams) WithImpersonateGroup(impersonateGroup *string) *TriggerPipelinePromoteParams

WithImpersonateGroup adds the impersonateGroup to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) WithImpersonateUser

func (o *TriggerPipelinePromoteParams) WithImpersonateUser(impersonateUser *string) *TriggerPipelinePromoteParams

WithImpersonateUser adds the impersonateUser to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) WithPipelineParametersPromote

func (o *TriggerPipelinePromoteParams) WithPipelineParametersPromote(pipelineParametersPromote *models.PipelineParametersPromote) *TriggerPipelinePromoteParams

WithPipelineParametersPromote adds the pipelineParametersPromote to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) WithTimeout

WithTimeout adds the timeout to the trigger pipeline promote params

func (*TriggerPipelinePromoteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TriggerPipelinePromoteReader

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

TriggerPipelinePromoteReader is a Reader for the TriggerPipelinePromote structure.

func (*TriggerPipelinePromoteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateApplicationAlertingConfigBadRequest

type UpdateApplicationAlertingConfigBadRequest struct {
}

UpdateApplicationAlertingConfigBadRequest describes a response with status code 400, with default header values.

Invalid configuration

func NewUpdateApplicationAlertingConfigBadRequest

func NewUpdateApplicationAlertingConfigBadRequest() *UpdateApplicationAlertingConfigBadRequest

NewUpdateApplicationAlertingConfigBadRequest creates a UpdateApplicationAlertingConfigBadRequest with default headers values

func (*UpdateApplicationAlertingConfigBadRequest) Code

Code gets the status code for the update application alerting config bad request response

func (*UpdateApplicationAlertingConfigBadRequest) Error

func (*UpdateApplicationAlertingConfigBadRequest) IsClientError

IsClientError returns true when this update application alerting config bad request response has a 4xx status code

func (*UpdateApplicationAlertingConfigBadRequest) IsCode

IsCode returns true when this update application alerting config bad request response a status code equal to that given

func (*UpdateApplicationAlertingConfigBadRequest) IsRedirect

IsRedirect returns true when this update application alerting config bad request response has a 3xx status code

func (*UpdateApplicationAlertingConfigBadRequest) IsServerError

IsServerError returns true when this update application alerting config bad request response has a 5xx status code

func (*UpdateApplicationAlertingConfigBadRequest) IsSuccess

IsSuccess returns true when this update application alerting config bad request response has a 2xx status code

func (*UpdateApplicationAlertingConfigBadRequest) String

type UpdateApplicationAlertingConfigForbidden

type UpdateApplicationAlertingConfigForbidden struct {
}

UpdateApplicationAlertingConfigForbidden describes a response with status code 403, with default header values.

Forbidden

func NewUpdateApplicationAlertingConfigForbidden

func NewUpdateApplicationAlertingConfigForbidden() *UpdateApplicationAlertingConfigForbidden

NewUpdateApplicationAlertingConfigForbidden creates a UpdateApplicationAlertingConfigForbidden with default headers values

func (*UpdateApplicationAlertingConfigForbidden) Code

Code gets the status code for the update application alerting config forbidden response

func (*UpdateApplicationAlertingConfigForbidden) Error

func (*UpdateApplicationAlertingConfigForbidden) IsClientError

IsClientError returns true when this update application alerting config forbidden response has a 4xx status code

func (*UpdateApplicationAlertingConfigForbidden) IsCode

IsCode returns true when this update application alerting config forbidden response a status code equal to that given

func (*UpdateApplicationAlertingConfigForbidden) IsRedirect

IsRedirect returns true when this update application alerting config forbidden response has a 3xx status code

func (*UpdateApplicationAlertingConfigForbidden) IsServerError

IsServerError returns true when this update application alerting config forbidden response has a 5xx status code

func (*UpdateApplicationAlertingConfigForbidden) IsSuccess

IsSuccess returns true when this update application alerting config forbidden response has a 2xx status code

func (*UpdateApplicationAlertingConfigForbidden) String

type UpdateApplicationAlertingConfigInternalServerError

type UpdateApplicationAlertingConfigInternalServerError struct {
}

UpdateApplicationAlertingConfigInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewUpdateApplicationAlertingConfigInternalServerError

func NewUpdateApplicationAlertingConfigInternalServerError() *UpdateApplicationAlertingConfigInternalServerError

NewUpdateApplicationAlertingConfigInternalServerError creates a UpdateApplicationAlertingConfigInternalServerError with default headers values

func (*UpdateApplicationAlertingConfigInternalServerError) Code

Code gets the status code for the update application alerting config internal server error response

func (*UpdateApplicationAlertingConfigInternalServerError) Error

func (*UpdateApplicationAlertingConfigInternalServerError) IsClientError

IsClientError returns true when this update application alerting config internal server error response has a 4xx status code

func (*UpdateApplicationAlertingConfigInternalServerError) IsCode

IsCode returns true when this update application alerting config internal server error response a status code equal to that given

func (*UpdateApplicationAlertingConfigInternalServerError) IsRedirect

IsRedirect returns true when this update application alerting config internal server error response has a 3xx status code

func (*UpdateApplicationAlertingConfigInternalServerError) IsServerError

IsServerError returns true when this update application alerting config internal server error response has a 5xx status code

func (*UpdateApplicationAlertingConfigInternalServerError) IsSuccess

IsSuccess returns true when this update application alerting config internal server error response has a 2xx status code

func (*UpdateApplicationAlertingConfigInternalServerError) String

type UpdateApplicationAlertingConfigNotFound

type UpdateApplicationAlertingConfigNotFound struct {
}

UpdateApplicationAlertingConfigNotFound describes a response with status code 404, with default header values.

Not found

func NewUpdateApplicationAlertingConfigNotFound

func NewUpdateApplicationAlertingConfigNotFound() *UpdateApplicationAlertingConfigNotFound

NewUpdateApplicationAlertingConfigNotFound creates a UpdateApplicationAlertingConfigNotFound with default headers values

func (*UpdateApplicationAlertingConfigNotFound) Code

Code gets the status code for the update application alerting config not found response

func (*UpdateApplicationAlertingConfigNotFound) Error

func (*UpdateApplicationAlertingConfigNotFound) IsClientError

func (o *UpdateApplicationAlertingConfigNotFound) IsClientError() bool

IsClientError returns true when this update application alerting config not found response has a 4xx status code

func (*UpdateApplicationAlertingConfigNotFound) IsCode

IsCode returns true when this update application alerting config not found response a status code equal to that given

func (*UpdateApplicationAlertingConfigNotFound) IsRedirect

IsRedirect returns true when this update application alerting config not found response has a 3xx status code

func (*UpdateApplicationAlertingConfigNotFound) IsServerError

func (o *UpdateApplicationAlertingConfigNotFound) IsServerError() bool

IsServerError returns true when this update application alerting config not found response has a 5xx status code

func (*UpdateApplicationAlertingConfigNotFound) IsSuccess

IsSuccess returns true when this update application alerting config not found response has a 2xx status code

func (*UpdateApplicationAlertingConfigNotFound) String

type UpdateApplicationAlertingConfigOK

type UpdateApplicationAlertingConfigOK struct {
	Payload *models.AlertingConfig
}

UpdateApplicationAlertingConfigOK describes a response with status code 200, with default header values.

Successful alerts config update

func NewUpdateApplicationAlertingConfigOK

func NewUpdateApplicationAlertingConfigOK() *UpdateApplicationAlertingConfigOK

NewUpdateApplicationAlertingConfigOK creates a UpdateApplicationAlertingConfigOK with default headers values

func (*UpdateApplicationAlertingConfigOK) Code

Code gets the status code for the update application alerting config o k response

func (*UpdateApplicationAlertingConfigOK) Error

func (*UpdateApplicationAlertingConfigOK) GetPayload

func (*UpdateApplicationAlertingConfigOK) IsClientError

func (o *UpdateApplicationAlertingConfigOK) IsClientError() bool

IsClientError returns true when this update application alerting config o k response has a 4xx status code

func (*UpdateApplicationAlertingConfigOK) IsCode

func (o *UpdateApplicationAlertingConfigOK) IsCode(code int) bool

IsCode returns true when this update application alerting config o k response a status code equal to that given

func (*UpdateApplicationAlertingConfigOK) IsRedirect

func (o *UpdateApplicationAlertingConfigOK) IsRedirect() bool

IsRedirect returns true when this update application alerting config o k response has a 3xx status code

func (*UpdateApplicationAlertingConfigOK) IsServerError

func (o *UpdateApplicationAlertingConfigOK) IsServerError() bool

IsServerError returns true when this update application alerting config o k response has a 5xx status code

func (*UpdateApplicationAlertingConfigOK) IsSuccess

func (o *UpdateApplicationAlertingConfigOK) IsSuccess() bool

IsSuccess returns true when this update application alerting config o k response has a 2xx status code

func (*UpdateApplicationAlertingConfigOK) String

type UpdateApplicationAlertingConfigParams

type UpdateApplicationAlertingConfigParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AlertsConfig.

	   Alerts configuration
	*/
	AlertsConfig *models.UpdateAlertingConfig

	/* AppName.

	   Name of application
	*/
	AppName string

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

UpdateApplicationAlertingConfigParams contains all the parameters to send to the API endpoint

for the update application alerting config operation.

Typically these are written to a http.Request.

func NewUpdateApplicationAlertingConfigParams

func NewUpdateApplicationAlertingConfigParams() *UpdateApplicationAlertingConfigParams

NewUpdateApplicationAlertingConfigParams creates a new UpdateApplicationAlertingConfigParams 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 NewUpdateApplicationAlertingConfigParamsWithContext

func NewUpdateApplicationAlertingConfigParamsWithContext(ctx context.Context) *UpdateApplicationAlertingConfigParams

NewUpdateApplicationAlertingConfigParamsWithContext creates a new UpdateApplicationAlertingConfigParams object with the ability to set a context for a request.

func NewUpdateApplicationAlertingConfigParamsWithHTTPClient

func NewUpdateApplicationAlertingConfigParamsWithHTTPClient(client *http.Client) *UpdateApplicationAlertingConfigParams

NewUpdateApplicationAlertingConfigParamsWithHTTPClient creates a new UpdateApplicationAlertingConfigParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateApplicationAlertingConfigParamsWithTimeout

func NewUpdateApplicationAlertingConfigParamsWithTimeout(timeout time.Duration) *UpdateApplicationAlertingConfigParams

NewUpdateApplicationAlertingConfigParamsWithTimeout creates a new UpdateApplicationAlertingConfigParams object with the ability to set a timeout on a request.

func (*UpdateApplicationAlertingConfigParams) SetAlertsConfig

func (o *UpdateApplicationAlertingConfigParams) SetAlertsConfig(alertsConfig *models.UpdateAlertingConfig)

SetAlertsConfig adds the alertsConfig to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) SetAppName

func (o *UpdateApplicationAlertingConfigParams) SetAppName(appName string)

SetAppName adds the appName to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) SetContext

SetContext adds the context to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) SetDefaults

func (o *UpdateApplicationAlertingConfigParams) SetDefaults()

SetDefaults hydrates default values in the update application alerting config params (not the query body).

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

func (*UpdateApplicationAlertingConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) SetImpersonateGroup

func (o *UpdateApplicationAlertingConfigParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) SetImpersonateUser

func (o *UpdateApplicationAlertingConfigParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) SetTimeout

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

SetTimeout adds the timeout to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) WithAlertsConfig

WithAlertsConfig adds the alertsConfig to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) WithAppName

WithAppName adds the appName to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) WithContext

WithContext adds the context to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) WithDefaults

WithDefaults hydrates default values in the update application alerting config params (not the query body).

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

func (*UpdateApplicationAlertingConfigParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) WithImpersonateGroup

func (o *UpdateApplicationAlertingConfigParams) WithImpersonateGroup(impersonateGroup *string) *UpdateApplicationAlertingConfigParams

WithImpersonateGroup adds the impersonateGroup to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) WithImpersonateUser

WithImpersonateUser adds the impersonateUser to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) WithTimeout

WithTimeout adds the timeout to the update application alerting config params

func (*UpdateApplicationAlertingConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateApplicationAlertingConfigReader

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

UpdateApplicationAlertingConfigReader is a Reader for the UpdateApplicationAlertingConfig structure.

func (*UpdateApplicationAlertingConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateApplicationAlertingConfigUnauthorized

type UpdateApplicationAlertingConfigUnauthorized struct {
}

UpdateApplicationAlertingConfigUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewUpdateApplicationAlertingConfigUnauthorized

func NewUpdateApplicationAlertingConfigUnauthorized() *UpdateApplicationAlertingConfigUnauthorized

NewUpdateApplicationAlertingConfigUnauthorized creates a UpdateApplicationAlertingConfigUnauthorized with default headers values

func (*UpdateApplicationAlertingConfigUnauthorized) Code

Code gets the status code for the update application alerting config unauthorized response

func (*UpdateApplicationAlertingConfigUnauthorized) Error

func (*UpdateApplicationAlertingConfigUnauthorized) IsClientError

IsClientError returns true when this update application alerting config unauthorized response has a 4xx status code

func (*UpdateApplicationAlertingConfigUnauthorized) IsCode

IsCode returns true when this update application alerting config unauthorized response a status code equal to that given

func (*UpdateApplicationAlertingConfigUnauthorized) IsRedirect

IsRedirect returns true when this update application alerting config unauthorized response has a 3xx status code

func (*UpdateApplicationAlertingConfigUnauthorized) IsServerError

IsServerError returns true when this update application alerting config unauthorized response has a 5xx status code

func (*UpdateApplicationAlertingConfigUnauthorized) IsSuccess

IsSuccess returns true when this update application alerting config unauthorized response has a 2xx status code

func (*UpdateApplicationAlertingConfigUnauthorized) String

type UpdateBuildSecretsSecretValueBadRequest

type UpdateBuildSecretsSecretValueBadRequest struct {
}

UpdateBuildSecretsSecretValueBadRequest describes a response with status code 400, with default header values.

Invalid application

func NewUpdateBuildSecretsSecretValueBadRequest

func NewUpdateBuildSecretsSecretValueBadRequest() *UpdateBuildSecretsSecretValueBadRequest

NewUpdateBuildSecretsSecretValueBadRequest creates a UpdateBuildSecretsSecretValueBadRequest with default headers values

func (*UpdateBuildSecretsSecretValueBadRequest) Code

Code gets the status code for the update build secrets secret value bad request response

func (*UpdateBuildSecretsSecretValueBadRequest) Error

func (*UpdateBuildSecretsSecretValueBadRequest) IsClientError

func (o *UpdateBuildSecretsSecretValueBadRequest) IsClientError() bool

IsClientError returns true when this update build secrets secret value bad request response has a 4xx status code

func (*UpdateBuildSecretsSecretValueBadRequest) IsCode

IsCode returns true when this update build secrets secret value bad request response a status code equal to that given

func (*UpdateBuildSecretsSecretValueBadRequest) IsRedirect

IsRedirect returns true when this update build secrets secret value bad request response has a 3xx status code

func (*UpdateBuildSecretsSecretValueBadRequest) IsServerError

func (o *UpdateBuildSecretsSecretValueBadRequest) IsServerError() bool

IsServerError returns true when this update build secrets secret value bad request response has a 5xx status code

func (*UpdateBuildSecretsSecretValueBadRequest) IsSuccess

IsSuccess returns true when this update build secrets secret value bad request response has a 2xx status code

func (*UpdateBuildSecretsSecretValueBadRequest) String

type UpdateBuildSecretsSecretValueConflict

type UpdateBuildSecretsSecretValueConflict struct {
}

UpdateBuildSecretsSecretValueConflict describes a response with status code 409, with default header values.

Conflict

func NewUpdateBuildSecretsSecretValueConflict

func NewUpdateBuildSecretsSecretValueConflict() *UpdateBuildSecretsSecretValueConflict

NewUpdateBuildSecretsSecretValueConflict creates a UpdateBuildSecretsSecretValueConflict with default headers values

func (*UpdateBuildSecretsSecretValueConflict) Code

Code gets the status code for the update build secrets secret value conflict response

func (*UpdateBuildSecretsSecretValueConflict) Error

func (*UpdateBuildSecretsSecretValueConflict) IsClientError

func (o *UpdateBuildSecretsSecretValueConflict) IsClientError() bool

IsClientError returns true when this update build secrets secret value conflict response has a 4xx status code

func (*UpdateBuildSecretsSecretValueConflict) IsCode

IsCode returns true when this update build secrets secret value conflict response a status code equal to that given

func (*UpdateBuildSecretsSecretValueConflict) IsRedirect

IsRedirect returns true when this update build secrets secret value conflict response has a 3xx status code

func (*UpdateBuildSecretsSecretValueConflict) IsServerError

func (o *UpdateBuildSecretsSecretValueConflict) IsServerError() bool

IsServerError returns true when this update build secrets secret value conflict response has a 5xx status code

func (*UpdateBuildSecretsSecretValueConflict) IsSuccess

IsSuccess returns true when this update build secrets secret value conflict response has a 2xx status code

func (*UpdateBuildSecretsSecretValueConflict) String

type UpdateBuildSecretsSecretValueForbidden

type UpdateBuildSecretsSecretValueForbidden struct {
}

UpdateBuildSecretsSecretValueForbidden describes a response with status code 403, with default header values.

Forbidden

func NewUpdateBuildSecretsSecretValueForbidden

func NewUpdateBuildSecretsSecretValueForbidden() *UpdateBuildSecretsSecretValueForbidden

NewUpdateBuildSecretsSecretValueForbidden creates a UpdateBuildSecretsSecretValueForbidden with default headers values

func (*UpdateBuildSecretsSecretValueForbidden) Code

Code gets the status code for the update build secrets secret value forbidden response

func (*UpdateBuildSecretsSecretValueForbidden) Error

func (*UpdateBuildSecretsSecretValueForbidden) IsClientError

func (o *UpdateBuildSecretsSecretValueForbidden) IsClientError() bool

IsClientError returns true when this update build secrets secret value forbidden response has a 4xx status code

func (*UpdateBuildSecretsSecretValueForbidden) IsCode

IsCode returns true when this update build secrets secret value forbidden response a status code equal to that given

func (*UpdateBuildSecretsSecretValueForbidden) IsRedirect

IsRedirect returns true when this update build secrets secret value forbidden response has a 3xx status code

func (*UpdateBuildSecretsSecretValueForbidden) IsServerError

func (o *UpdateBuildSecretsSecretValueForbidden) IsServerError() bool

IsServerError returns true when this update build secrets secret value forbidden response has a 5xx status code

func (*UpdateBuildSecretsSecretValueForbidden) IsSuccess

IsSuccess returns true when this update build secrets secret value forbidden response has a 2xx status code

func (*UpdateBuildSecretsSecretValueForbidden) String

type UpdateBuildSecretsSecretValueNotFound

type UpdateBuildSecretsSecretValueNotFound struct {
}

UpdateBuildSecretsSecretValueNotFound describes a response with status code 404, with default header values.

Not found

func NewUpdateBuildSecretsSecretValueNotFound

func NewUpdateBuildSecretsSecretValueNotFound() *UpdateBuildSecretsSecretValueNotFound

NewUpdateBuildSecretsSecretValueNotFound creates a UpdateBuildSecretsSecretValueNotFound with default headers values

func (*UpdateBuildSecretsSecretValueNotFound) Code

Code gets the status code for the update build secrets secret value not found response

func (*UpdateBuildSecretsSecretValueNotFound) Error

func (*UpdateBuildSecretsSecretValueNotFound) IsClientError

func (o *UpdateBuildSecretsSecretValueNotFound) IsClientError() bool

IsClientError returns true when this update build secrets secret value not found response has a 4xx status code

func (*UpdateBuildSecretsSecretValueNotFound) IsCode

IsCode returns true when this update build secrets secret value not found response a status code equal to that given

func (*UpdateBuildSecretsSecretValueNotFound) IsRedirect

IsRedirect returns true when this update build secrets secret value not found response has a 3xx status code

func (*UpdateBuildSecretsSecretValueNotFound) IsServerError

func (o *UpdateBuildSecretsSecretValueNotFound) IsServerError() bool

IsServerError returns true when this update build secrets secret value not found response has a 5xx status code

func (*UpdateBuildSecretsSecretValueNotFound) IsSuccess

IsSuccess returns true when this update build secrets secret value not found response has a 2xx status code

func (*UpdateBuildSecretsSecretValueNotFound) String

type UpdateBuildSecretsSecretValueOK

type UpdateBuildSecretsSecretValueOK struct {
}

UpdateBuildSecretsSecretValueOK describes a response with status code 200, with default header values.

success

func NewUpdateBuildSecretsSecretValueOK

func NewUpdateBuildSecretsSecretValueOK() *UpdateBuildSecretsSecretValueOK

NewUpdateBuildSecretsSecretValueOK creates a UpdateBuildSecretsSecretValueOK with default headers values

func (*UpdateBuildSecretsSecretValueOK) Code

Code gets the status code for the update build secrets secret value o k response

func (*UpdateBuildSecretsSecretValueOK) Error

func (*UpdateBuildSecretsSecretValueOK) IsClientError

func (o *UpdateBuildSecretsSecretValueOK) IsClientError() bool

IsClientError returns true when this update build secrets secret value o k response has a 4xx status code

func (*UpdateBuildSecretsSecretValueOK) IsCode

func (o *UpdateBuildSecretsSecretValueOK) IsCode(code int) bool

IsCode returns true when this update build secrets secret value o k response a status code equal to that given

func (*UpdateBuildSecretsSecretValueOK) IsRedirect

func (o *UpdateBuildSecretsSecretValueOK) IsRedirect() bool

IsRedirect returns true when this update build secrets secret value o k response has a 3xx status code

func (*UpdateBuildSecretsSecretValueOK) IsServerError

func (o *UpdateBuildSecretsSecretValueOK) IsServerError() bool

IsServerError returns true when this update build secrets secret value o k response has a 5xx status code

func (*UpdateBuildSecretsSecretValueOK) IsSuccess

func (o *UpdateBuildSecretsSecretValueOK) IsSuccess() bool

IsSuccess returns true when this update build secrets secret value o k response has a 2xx status code

func (*UpdateBuildSecretsSecretValueOK) String

type UpdateBuildSecretsSecretValueParams

type UpdateBuildSecretsSecretValueParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

	/* SecretName.

	   name of secret
	*/
	SecretName string

	/* SecretValue.

	   New secret value
	*/
	SecretValue *models.SecretParameters

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

UpdateBuildSecretsSecretValueParams contains all the parameters to send to the API endpoint

for the update build secrets secret value operation.

Typically these are written to a http.Request.

func NewUpdateBuildSecretsSecretValueParams

func NewUpdateBuildSecretsSecretValueParams() *UpdateBuildSecretsSecretValueParams

NewUpdateBuildSecretsSecretValueParams creates a new UpdateBuildSecretsSecretValueParams 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 NewUpdateBuildSecretsSecretValueParamsWithContext

func NewUpdateBuildSecretsSecretValueParamsWithContext(ctx context.Context) *UpdateBuildSecretsSecretValueParams

NewUpdateBuildSecretsSecretValueParamsWithContext creates a new UpdateBuildSecretsSecretValueParams object with the ability to set a context for a request.

func NewUpdateBuildSecretsSecretValueParamsWithHTTPClient

func NewUpdateBuildSecretsSecretValueParamsWithHTTPClient(client *http.Client) *UpdateBuildSecretsSecretValueParams

NewUpdateBuildSecretsSecretValueParamsWithHTTPClient creates a new UpdateBuildSecretsSecretValueParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateBuildSecretsSecretValueParamsWithTimeout

func NewUpdateBuildSecretsSecretValueParamsWithTimeout(timeout time.Duration) *UpdateBuildSecretsSecretValueParams

NewUpdateBuildSecretsSecretValueParamsWithTimeout creates a new UpdateBuildSecretsSecretValueParams object with the ability to set a timeout on a request.

func (*UpdateBuildSecretsSecretValueParams) SetAppName

func (o *UpdateBuildSecretsSecretValueParams) SetAppName(appName string)

SetAppName adds the appName to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) SetContext

SetContext adds the context to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) SetDefaults

func (o *UpdateBuildSecretsSecretValueParams) SetDefaults()

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

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

func (*UpdateBuildSecretsSecretValueParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) SetImpersonateGroup

func (o *UpdateBuildSecretsSecretValueParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) SetImpersonateUser

func (o *UpdateBuildSecretsSecretValueParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) SetSecretName

func (o *UpdateBuildSecretsSecretValueParams) SetSecretName(secretName string)

SetSecretName adds the secretName to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) SetSecretValue

func (o *UpdateBuildSecretsSecretValueParams) SetSecretValue(secretValue *models.SecretParameters)

SetSecretValue adds the secretValue to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) SetTimeout

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

SetTimeout adds the timeout to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WithAppName

WithAppName adds the appName to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WithContext

WithContext adds the context to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WithDefaults

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

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

func (*UpdateBuildSecretsSecretValueParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WithImpersonateGroup

func (o *UpdateBuildSecretsSecretValueParams) WithImpersonateGroup(impersonateGroup *string) *UpdateBuildSecretsSecretValueParams

WithImpersonateGroup adds the impersonateGroup to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WithImpersonateUser

func (o *UpdateBuildSecretsSecretValueParams) WithImpersonateUser(impersonateUser *string) *UpdateBuildSecretsSecretValueParams

WithImpersonateUser adds the impersonateUser to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WithSecretName

WithSecretName adds the secretName to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WithSecretValue

WithSecretValue adds the secretValue to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WithTimeout

WithTimeout adds the timeout to the update build secrets secret value params

func (*UpdateBuildSecretsSecretValueParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateBuildSecretsSecretValueReader

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

UpdateBuildSecretsSecretValueReader is a Reader for the UpdateBuildSecretsSecretValue structure.

func (*UpdateBuildSecretsSecretValueReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateBuildSecretsSecretValueUnauthorized

type UpdateBuildSecretsSecretValueUnauthorized struct {
}

UpdateBuildSecretsSecretValueUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewUpdateBuildSecretsSecretValueUnauthorized

func NewUpdateBuildSecretsSecretValueUnauthorized() *UpdateBuildSecretsSecretValueUnauthorized

NewUpdateBuildSecretsSecretValueUnauthorized creates a UpdateBuildSecretsSecretValueUnauthorized with default headers values

func (*UpdateBuildSecretsSecretValueUnauthorized) Code

Code gets the status code for the update build secrets secret value unauthorized response

func (*UpdateBuildSecretsSecretValueUnauthorized) Error

func (*UpdateBuildSecretsSecretValueUnauthorized) IsClientError

IsClientError returns true when this update build secrets secret value unauthorized response has a 4xx status code

func (*UpdateBuildSecretsSecretValueUnauthorized) IsCode

IsCode returns true when this update build secrets secret value unauthorized response a status code equal to that given

func (*UpdateBuildSecretsSecretValueUnauthorized) IsRedirect

IsRedirect returns true when this update build secrets secret value unauthorized response has a 3xx status code

func (*UpdateBuildSecretsSecretValueUnauthorized) IsServerError

IsServerError returns true when this update build secrets secret value unauthorized response has a 5xx status code

func (*UpdateBuildSecretsSecretValueUnauthorized) IsSuccess

IsSuccess returns true when this update build secrets secret value unauthorized response has a 2xx status code

func (*UpdateBuildSecretsSecretValueUnauthorized) String

type UpdatePrivateImageHubsSecretValueBadRequest

type UpdatePrivateImageHubsSecretValueBadRequest struct {
}

UpdatePrivateImageHubsSecretValueBadRequest describes a response with status code 400, with default header values.

Invalid application

func NewUpdatePrivateImageHubsSecretValueBadRequest

func NewUpdatePrivateImageHubsSecretValueBadRequest() *UpdatePrivateImageHubsSecretValueBadRequest

NewUpdatePrivateImageHubsSecretValueBadRequest creates a UpdatePrivateImageHubsSecretValueBadRequest with default headers values

func (*UpdatePrivateImageHubsSecretValueBadRequest) Code

Code gets the status code for the update private image hubs secret value bad request response

func (*UpdatePrivateImageHubsSecretValueBadRequest) Error

func (*UpdatePrivateImageHubsSecretValueBadRequest) IsClientError

IsClientError returns true when this update private image hubs secret value bad request response has a 4xx status code

func (*UpdatePrivateImageHubsSecretValueBadRequest) IsCode

IsCode returns true when this update private image hubs secret value bad request response a status code equal to that given

func (*UpdatePrivateImageHubsSecretValueBadRequest) IsRedirect

IsRedirect returns true when this update private image hubs secret value bad request response has a 3xx status code

func (*UpdatePrivateImageHubsSecretValueBadRequest) IsServerError

IsServerError returns true when this update private image hubs secret value bad request response has a 5xx status code

func (*UpdatePrivateImageHubsSecretValueBadRequest) IsSuccess

IsSuccess returns true when this update private image hubs secret value bad request response has a 2xx status code

func (*UpdatePrivateImageHubsSecretValueBadRequest) String

type UpdatePrivateImageHubsSecretValueConflict

type UpdatePrivateImageHubsSecretValueConflict struct {
}

UpdatePrivateImageHubsSecretValueConflict describes a response with status code 409, with default header values.

Conflict

func NewUpdatePrivateImageHubsSecretValueConflict

func NewUpdatePrivateImageHubsSecretValueConflict() *UpdatePrivateImageHubsSecretValueConflict

NewUpdatePrivateImageHubsSecretValueConflict creates a UpdatePrivateImageHubsSecretValueConflict with default headers values

func (*UpdatePrivateImageHubsSecretValueConflict) Code

Code gets the status code for the update private image hubs secret value conflict response

func (*UpdatePrivateImageHubsSecretValueConflict) Error

func (*UpdatePrivateImageHubsSecretValueConflict) IsClientError

IsClientError returns true when this update private image hubs secret value conflict response has a 4xx status code

func (*UpdatePrivateImageHubsSecretValueConflict) IsCode

IsCode returns true when this update private image hubs secret value conflict response a status code equal to that given

func (*UpdatePrivateImageHubsSecretValueConflict) IsRedirect

IsRedirect returns true when this update private image hubs secret value conflict response has a 3xx status code

func (*UpdatePrivateImageHubsSecretValueConflict) IsServerError

IsServerError returns true when this update private image hubs secret value conflict response has a 5xx status code

func (*UpdatePrivateImageHubsSecretValueConflict) IsSuccess

IsSuccess returns true when this update private image hubs secret value conflict response has a 2xx status code

func (*UpdatePrivateImageHubsSecretValueConflict) String

type UpdatePrivateImageHubsSecretValueForbidden

type UpdatePrivateImageHubsSecretValueForbidden struct {
}

UpdatePrivateImageHubsSecretValueForbidden describes a response with status code 403, with default header values.

Forbidden

func NewUpdatePrivateImageHubsSecretValueForbidden

func NewUpdatePrivateImageHubsSecretValueForbidden() *UpdatePrivateImageHubsSecretValueForbidden

NewUpdatePrivateImageHubsSecretValueForbidden creates a UpdatePrivateImageHubsSecretValueForbidden with default headers values

func (*UpdatePrivateImageHubsSecretValueForbidden) Code

Code gets the status code for the update private image hubs secret value forbidden response

func (*UpdatePrivateImageHubsSecretValueForbidden) Error

func (*UpdatePrivateImageHubsSecretValueForbidden) IsClientError

IsClientError returns true when this update private image hubs secret value forbidden response has a 4xx status code

func (*UpdatePrivateImageHubsSecretValueForbidden) IsCode

IsCode returns true when this update private image hubs secret value forbidden response a status code equal to that given

func (*UpdatePrivateImageHubsSecretValueForbidden) IsRedirect

IsRedirect returns true when this update private image hubs secret value forbidden response has a 3xx status code

func (*UpdatePrivateImageHubsSecretValueForbidden) IsServerError

IsServerError returns true when this update private image hubs secret value forbidden response has a 5xx status code

func (*UpdatePrivateImageHubsSecretValueForbidden) IsSuccess

IsSuccess returns true when this update private image hubs secret value forbidden response has a 2xx status code

func (*UpdatePrivateImageHubsSecretValueForbidden) String

type UpdatePrivateImageHubsSecretValueNotFound

type UpdatePrivateImageHubsSecretValueNotFound struct {
}

UpdatePrivateImageHubsSecretValueNotFound describes a response with status code 404, with default header values.

Not found

func NewUpdatePrivateImageHubsSecretValueNotFound

func NewUpdatePrivateImageHubsSecretValueNotFound() *UpdatePrivateImageHubsSecretValueNotFound

NewUpdatePrivateImageHubsSecretValueNotFound creates a UpdatePrivateImageHubsSecretValueNotFound with default headers values

func (*UpdatePrivateImageHubsSecretValueNotFound) Code

Code gets the status code for the update private image hubs secret value not found response

func (*UpdatePrivateImageHubsSecretValueNotFound) Error

func (*UpdatePrivateImageHubsSecretValueNotFound) IsClientError

IsClientError returns true when this update private image hubs secret value not found response has a 4xx status code

func (*UpdatePrivateImageHubsSecretValueNotFound) IsCode

IsCode returns true when this update private image hubs secret value not found response a status code equal to that given

func (*UpdatePrivateImageHubsSecretValueNotFound) IsRedirect

IsRedirect returns true when this update private image hubs secret value not found response has a 3xx status code

func (*UpdatePrivateImageHubsSecretValueNotFound) IsServerError

IsServerError returns true when this update private image hubs secret value not found response has a 5xx status code

func (*UpdatePrivateImageHubsSecretValueNotFound) IsSuccess

IsSuccess returns true when this update private image hubs secret value not found response has a 2xx status code

func (*UpdatePrivateImageHubsSecretValueNotFound) String

type UpdatePrivateImageHubsSecretValueOK

type UpdatePrivateImageHubsSecretValueOK struct {
}

UpdatePrivateImageHubsSecretValueOK describes a response with status code 200, with default header values.

success

func NewUpdatePrivateImageHubsSecretValueOK

func NewUpdatePrivateImageHubsSecretValueOK() *UpdatePrivateImageHubsSecretValueOK

NewUpdatePrivateImageHubsSecretValueOK creates a UpdatePrivateImageHubsSecretValueOK with default headers values

func (*UpdatePrivateImageHubsSecretValueOK) Code

Code gets the status code for the update private image hubs secret value o k response

func (*UpdatePrivateImageHubsSecretValueOK) Error

func (*UpdatePrivateImageHubsSecretValueOK) IsClientError

func (o *UpdatePrivateImageHubsSecretValueOK) IsClientError() bool

IsClientError returns true when this update private image hubs secret value o k response has a 4xx status code

func (*UpdatePrivateImageHubsSecretValueOK) IsCode

IsCode returns true when this update private image hubs secret value o k response a status code equal to that given

func (*UpdatePrivateImageHubsSecretValueOK) IsRedirect

func (o *UpdatePrivateImageHubsSecretValueOK) IsRedirect() bool

IsRedirect returns true when this update private image hubs secret value o k response has a 3xx status code

func (*UpdatePrivateImageHubsSecretValueOK) IsServerError

func (o *UpdatePrivateImageHubsSecretValueOK) IsServerError() bool

IsServerError returns true when this update private image hubs secret value o k response has a 5xx status code

func (*UpdatePrivateImageHubsSecretValueOK) IsSuccess

IsSuccess returns true when this update private image hubs secret value o k response has a 2xx status code

func (*UpdatePrivateImageHubsSecretValueOK) String

type UpdatePrivateImageHubsSecretValueParams

type UpdatePrivateImageHubsSecretValueParams struct {

	/* ImpersonateGroup.

	   Works only with custom setup of cluster. Allow impersonation of a comma-seperated list of test groups (Required if Impersonate-User is set)
	*/
	ImpersonateGroup *string

	/* ImpersonateUser.

	   Works only with custom setup of cluster. Allow impersonation of test users (Required if Impersonate-Group is set)
	*/
	ImpersonateUser *string

	/* AppName.

	   Name of application
	*/
	AppName string

	/* ImageHubSecret.

	   New secret value
	*/
	ImageHubSecret *models.SecretParameters

	/* ServerName.

	   server name to update
	*/
	ServerName string

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

UpdatePrivateImageHubsSecretValueParams contains all the parameters to send to the API endpoint

for the update private image hubs secret value operation.

Typically these are written to a http.Request.

func NewUpdatePrivateImageHubsSecretValueParams

func NewUpdatePrivateImageHubsSecretValueParams() *UpdatePrivateImageHubsSecretValueParams

NewUpdatePrivateImageHubsSecretValueParams creates a new UpdatePrivateImageHubsSecretValueParams 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 NewUpdatePrivateImageHubsSecretValueParamsWithContext

func NewUpdatePrivateImageHubsSecretValueParamsWithContext(ctx context.Context) *UpdatePrivateImageHubsSecretValueParams

NewUpdatePrivateImageHubsSecretValueParamsWithContext creates a new UpdatePrivateImageHubsSecretValueParams object with the ability to set a context for a request.

func NewUpdatePrivateImageHubsSecretValueParamsWithHTTPClient

func NewUpdatePrivateImageHubsSecretValueParamsWithHTTPClient(client *http.Client) *UpdatePrivateImageHubsSecretValueParams

NewUpdatePrivateImageHubsSecretValueParamsWithHTTPClient creates a new UpdatePrivateImageHubsSecretValueParams object with the ability to set a custom HTTPClient for a request.

func NewUpdatePrivateImageHubsSecretValueParamsWithTimeout

func NewUpdatePrivateImageHubsSecretValueParamsWithTimeout(timeout time.Duration) *UpdatePrivateImageHubsSecretValueParams

NewUpdatePrivateImageHubsSecretValueParamsWithTimeout creates a new UpdatePrivateImageHubsSecretValueParams object with the ability to set a timeout on a request.

func (*UpdatePrivateImageHubsSecretValueParams) SetAppName

func (o *UpdatePrivateImageHubsSecretValueParams) SetAppName(appName string)

SetAppName adds the appName to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) SetContext

SetContext adds the context to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) SetDefaults

func (o *UpdatePrivateImageHubsSecretValueParams) SetDefaults()

SetDefaults hydrates default values in the update private image hubs secret value params (not the query body).

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

func (*UpdatePrivateImageHubsSecretValueParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) SetImageHubSecret

func (o *UpdatePrivateImageHubsSecretValueParams) SetImageHubSecret(imageHubSecret *models.SecretParameters)

SetImageHubSecret adds the imageHubSecret to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) SetImpersonateGroup

func (o *UpdatePrivateImageHubsSecretValueParams) SetImpersonateGroup(impersonateGroup *string)

SetImpersonateGroup adds the impersonateGroup to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) SetImpersonateUser

func (o *UpdatePrivateImageHubsSecretValueParams) SetImpersonateUser(impersonateUser *string)

SetImpersonateUser adds the impersonateUser to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) SetServerName

func (o *UpdatePrivateImageHubsSecretValueParams) SetServerName(serverName string)

SetServerName adds the serverName to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) SetTimeout

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

SetTimeout adds the timeout to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WithAppName

WithAppName adds the appName to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WithContext

WithContext adds the context to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WithDefaults

WithDefaults hydrates default values in the update private image hubs secret value params (not the query body).

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

func (*UpdatePrivateImageHubsSecretValueParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WithImageHubSecret

WithImageHubSecret adds the imageHubSecret to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WithImpersonateGroup

WithImpersonateGroup adds the impersonateGroup to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WithImpersonateUser

WithImpersonateUser adds the impersonateUser to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WithServerName

WithServerName adds the serverName to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WithTimeout

WithTimeout adds the timeout to the update private image hubs secret value params

func (*UpdatePrivateImageHubsSecretValueParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdatePrivateImageHubsSecretValueReader

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

UpdatePrivateImageHubsSecretValueReader is a Reader for the UpdatePrivateImageHubsSecretValue structure.

func (*UpdatePrivateImageHubsSecretValueReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdatePrivateImageHubsSecretValueUnauthorized

type UpdatePrivateImageHubsSecretValueUnauthorized struct {
}

UpdatePrivateImageHubsSecretValueUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewUpdatePrivateImageHubsSecretValueUnauthorized

func NewUpdatePrivateImageHubsSecretValueUnauthorized() *UpdatePrivateImageHubsSecretValueUnauthorized

NewUpdatePrivateImageHubsSecretValueUnauthorized creates a UpdatePrivateImageHubsSecretValueUnauthorized with default headers values

func (*UpdatePrivateImageHubsSecretValueUnauthorized) Code

Code gets the status code for the update private image hubs secret value unauthorized response

func (*UpdatePrivateImageHubsSecretValueUnauthorized) Error

func (*UpdatePrivateImageHubsSecretValueUnauthorized) IsClientError

IsClientError returns true when this update private image hubs secret value unauthorized response has a 4xx status code

func (*UpdatePrivateImageHubsSecretValueUnauthorized) IsCode

IsCode returns true when this update private image hubs secret value unauthorized response a status code equal to that given

func (*UpdatePrivateImageHubsSecretValueUnauthorized) IsRedirect

IsRedirect returns true when this update private image hubs secret value unauthorized response has a 3xx status code

func (*UpdatePrivateImageHubsSecretValueUnauthorized) IsServerError

IsServerError returns true when this update private image hubs secret value unauthorized response has a 5xx status code

func (*UpdatePrivateImageHubsSecretValueUnauthorized) IsSuccess

IsSuccess returns true when this update private image hubs secret value unauthorized response has a 2xx status code

func (*UpdatePrivateImageHubsSecretValueUnauthorized) String

Source Files

Jump to

Keyboard shortcuts

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