deployments

package
v1.3.0 Latest Latest
Warning

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

Go to latest
Published: Mar 23, 2021 License: Apache-2.0 Imports: 11 Imported by: 11

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CancelDeploymentResourcePendingPlanBadRequest

type CancelDeploymentResourcePendingPlanBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
CancelDeploymentResourcePendingPlanBadRequest describes a response with status code 400, with default header values.

The Resource does not have a pending plan. (code: `deployments.resource_does_not_have_a_pending_plan`)

func NewCancelDeploymentResourcePendingPlanBadRequest

func NewCancelDeploymentResourcePendingPlanBadRequest() *CancelDeploymentResourcePendingPlanBadRequest

NewCancelDeploymentResourcePendingPlanBadRequest creates a CancelDeploymentResourcePendingPlanBadRequest with default headers values

func (*CancelDeploymentResourcePendingPlanBadRequest) Error

func (*CancelDeploymentResourcePendingPlanBadRequest) GetPayload

type CancelDeploymentResourcePendingPlanInternalServerError

type CancelDeploymentResourcePendingPlanInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
CancelDeploymentResourcePendingPlanInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewCancelDeploymentResourcePendingPlanInternalServerError

func NewCancelDeploymentResourcePendingPlanInternalServerError() *CancelDeploymentResourcePendingPlanInternalServerError

NewCancelDeploymentResourcePendingPlanInternalServerError creates a CancelDeploymentResourcePendingPlanInternalServerError with default headers values

func (*CancelDeploymentResourcePendingPlanInternalServerError) Error

func (*CancelDeploymentResourcePendingPlanInternalServerError) GetPayload

type CancelDeploymentResourcePendingPlanNotFound

type CancelDeploymentResourcePendingPlanNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
CancelDeploymentResourcePendingPlanNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewCancelDeploymentResourcePendingPlanNotFound

func NewCancelDeploymentResourcePendingPlanNotFound() *CancelDeploymentResourcePendingPlanNotFound

NewCancelDeploymentResourcePendingPlanNotFound creates a CancelDeploymentResourcePendingPlanNotFound with default headers values

func (*CancelDeploymentResourcePendingPlanNotFound) Error

func (*CancelDeploymentResourcePendingPlanNotFound) GetPayload

type CancelDeploymentResourcePendingPlanOK

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

Standard Deployment Resource Crud Response

func NewCancelDeploymentResourcePendingPlanOK

func NewCancelDeploymentResourcePendingPlanOK() *CancelDeploymentResourcePendingPlanOK

NewCancelDeploymentResourcePendingPlanOK creates a CancelDeploymentResourcePendingPlanOK with default headers values

func (*CancelDeploymentResourcePendingPlanOK) Error

func (*CancelDeploymentResourcePendingPlanOK) GetPayload

type CancelDeploymentResourcePendingPlanParams

type CancelDeploymentResourcePendingPlanParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* ForceDelete.

	   When `true`, deletes the pending plan instead of attempting a graceful cancellation. The default is `false`.
	*/
	ForceDelete *bool

	/* IgnoreMissing.

	   When `true`, returns successfully, even when plans are missing. The default is `false`.
	*/
	IgnoreMissing *bool

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource
	*/
	ResourceKind string

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

CancelDeploymentResourcePendingPlanParams contains all the parameters to send to the API endpoint

for the cancel deployment resource pending plan operation.

Typically these are written to a http.Request.

func NewCancelDeploymentResourcePendingPlanParams

func NewCancelDeploymentResourcePendingPlanParams() *CancelDeploymentResourcePendingPlanParams

NewCancelDeploymentResourcePendingPlanParams creates a new CancelDeploymentResourcePendingPlanParams 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 NewCancelDeploymentResourcePendingPlanParamsWithContext

func NewCancelDeploymentResourcePendingPlanParamsWithContext(ctx context.Context) *CancelDeploymentResourcePendingPlanParams

NewCancelDeploymentResourcePendingPlanParamsWithContext creates a new CancelDeploymentResourcePendingPlanParams object with the ability to set a context for a request.

func NewCancelDeploymentResourcePendingPlanParamsWithHTTPClient

func NewCancelDeploymentResourcePendingPlanParamsWithHTTPClient(client *http.Client) *CancelDeploymentResourcePendingPlanParams

NewCancelDeploymentResourcePendingPlanParamsWithHTTPClient creates a new CancelDeploymentResourcePendingPlanParams object with the ability to set a custom HTTPClient for a request.

func NewCancelDeploymentResourcePendingPlanParamsWithTimeout

func NewCancelDeploymentResourcePendingPlanParamsWithTimeout(timeout time.Duration) *CancelDeploymentResourcePendingPlanParams

NewCancelDeploymentResourcePendingPlanParamsWithTimeout creates a new CancelDeploymentResourcePendingPlanParams object with the ability to set a timeout on a request.

func (*CancelDeploymentResourcePendingPlanParams) SetContext

SetContext adds the context to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the cancel deployment resource pending plan params (not the query body).

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

func (*CancelDeploymentResourcePendingPlanParams) SetDeploymentID

func (o *CancelDeploymentResourcePendingPlanParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) SetForceDelete

func (o *CancelDeploymentResourcePendingPlanParams) SetForceDelete(forceDelete *bool)

SetForceDelete adds the forceDelete to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) SetIgnoreMissing

func (o *CancelDeploymentResourcePendingPlanParams) SetIgnoreMissing(ignoreMissing *bool)

SetIgnoreMissing adds the ignoreMissing to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) SetRefID

SetRefID adds the refId to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) SetResourceKind

func (o *CancelDeploymentResourcePendingPlanParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) SetTimeout

SetTimeout adds the timeout to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WithContext

WithContext adds the context to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the cancel deployment resource pending plan params (not the query body).

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

func (*CancelDeploymentResourcePendingPlanParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WithForceDelete

WithForceDelete adds the forceDelete to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WithIgnoreMissing

WithIgnoreMissing adds the ignoreMissing to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WithRefID

WithRefID adds the refID to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WithResourceKind

WithResourceKind adds the resourceKind to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WithTimeout

WithTimeout adds the timeout to the cancel deployment resource pending plan params

func (*CancelDeploymentResourcePendingPlanParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CancelDeploymentResourcePendingPlanReader

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

CancelDeploymentResourcePendingPlanReader is a Reader for the CancelDeploymentResourcePendingPlan structure.

func (*CancelDeploymentResourcePendingPlanReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CancelDeploymentResourcePendingPlanRetryWith

type CancelDeploymentResourcePendingPlanRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
CancelDeploymentResourcePendingPlanRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewCancelDeploymentResourcePendingPlanRetryWith

func NewCancelDeploymentResourcePendingPlanRetryWith() *CancelDeploymentResourcePendingPlanRetryWith

NewCancelDeploymentResourcePendingPlanRetryWith creates a CancelDeploymentResourcePendingPlanRetryWith with default headers values

func (*CancelDeploymentResourcePendingPlanRetryWith) Error

func (*CancelDeploymentResourcePendingPlanRetryWith) GetPayload

type Client

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

Client for deployments API

func (*Client) CancelDeploymentResourcePendingPlan

func (a *Client) CancelDeploymentResourcePendingPlan(params *CancelDeploymentResourcePendingPlanParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CancelDeploymentResourcePendingPlanOK, error)

CancelDeploymentResourcePendingPlan cancels resource pending plan

Cancels the pending plan of a Resource belonging to a given Deployment.

func (*Client) CreateDeployment

CreateDeployment creates deployment

Creates a Deployment.

func (*Client) DeleteDeployment

func (a *Client) DeleteDeployment(params *DeleteDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteDeploymentOK, error)

DeleteDeployment deletes deployment

Deletes a Deployment and all its resources.

func (*Client) DeleteDeploymentStatelessResource

func (a *Client) DeleteDeploymentStatelessResource(params *DeleteDeploymentStatelessResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteDeploymentStatelessResourceOK, error)

DeleteDeploymentStatelessResource deletes stateless resource from deployment

Delete Stateless Resource belonging to a given Deployment. Deployment must be shutdown already.

func (*Client) DeploymentApmResetSecretToken

DeploymentApmResetSecretToken resets the secret token for an a p m resource

Reset the token of an APM resource.

func (*Client) EnableDeploymentResourceCcr added in v1.3.0

func (a *Client) EnableDeploymentResourceCcr(params *EnableDeploymentResourceCcrParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*EnableDeploymentResourceCcrOK, error)

EnableDeploymentResourceCcr migrates elasticsearch and associated kibana resources to enable c c r

Migrates the specified Elasticsearch resource and its associated Kibana to enable CCR (if supported).

func (*Client) EnableDeploymentResourceIlm

func (a *Client) EnableDeploymentResourceIlm(params *EnableDeploymentResourceIlmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*EnableDeploymentResourceIlmOK, error)

EnableDeploymentResourceIlm migrates elasticsearch resource to use i l m

Migrates the specified Elasticsearch resource to use ILM.

func (*Client) EnableDeploymentResourceSlm

func (a *Client) EnableDeploymentResourceSlm(params *EnableDeploymentResourceSlmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*EnableDeploymentResourceSlmOK, error)

EnableDeploymentResourceSlm migrates elasticsearch resource to use s l m

Migrates the specified Elasticsearch resource to use SLM.

func (*Client) GetAppsearchReadOnlyMode

func (a *Client) GetAppsearchReadOnlyMode(params *GetAppsearchReadOnlyModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAppsearchReadOnlyModeOK, error)

GetAppsearchReadOnlyMode sets app search read only status

Enable/Disable read-only mode on the given App Search resource.

func (*Client) GetDeployment

func (a *Client) GetDeployment(params *GetDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentOK, error)

GetDeployment gets deployment

Retrieves information about a Deployment.

func (*Client) GetDeploymentApmResourceInfo

func (a *Client) GetDeploymentApmResourceInfo(params *GetDeploymentApmResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentApmResourceInfoOK, error)

GetDeploymentApmResourceInfo gets deployment a p m resource info

Get info about an APM Resource belonging to a given Deployment.

func (*Client) GetDeploymentAppsearchResourceInfo

func (a *Client) GetDeploymentAppsearchResourceInfo(params *GetDeploymentAppsearchResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentAppsearchResourceInfoOK, error)

GetDeploymentAppsearchResourceInfo gets deployment app search resource info

Get info about an App Search Resource belonging to a given Deployment.

func (*Client) GetDeploymentEnterpriseSearchResourceInfo

GetDeploymentEnterpriseSearchResourceInfo gets deployment enterprise search resource info

Get info about an Enterprise Search Resource belonging to a given Deployment.

func (*Client) GetDeploymentEsResourceEligibleRemoteClusters added in v1.2.0

GetDeploymentEsResourceEligibleRemoteClusters gets eligible remote clusters

Returns the list of deployments which contain eligible remote clusters for the elasticsearch resource.

func (*Client) GetDeploymentEsResourceInfo

func (a *Client) GetDeploymentEsResourceInfo(params *GetDeploymentEsResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentEsResourceInfoOK, error)

GetDeploymentEsResourceInfo gets deployment elasticsearch resource info

Get info about an Elasticsearch Resource belonging to a given Deployment.

func (*Client) GetDeploymentEsResourceKeystore

func (a *Client) GetDeploymentEsResourceKeystore(params *GetDeploymentEsResourceKeystoreParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentEsResourceKeystoreOK, error)

GetDeploymentEsResourceKeystore gets the settings from the elasticsearch resource keystore

Adds the specified values to the Elasticsearch keystore, or removes the keys for the unspecified values.

func (*Client) GetDeploymentEsResourceRemoteClusters

func (a *Client) GetDeploymentEsResourceRemoteClusters(params *GetDeploymentEsResourceRemoteClustersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentEsResourceRemoteClustersOK, error)

GetDeploymentEsResourceRemoteClusters gets remote clusters

Returns the list of remote clusters for the elasticsearch resource.

func (*Client) GetDeploymentKibResourceInfo

func (a *Client) GetDeploymentKibResourceInfo(params *GetDeploymentKibResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentKibResourceInfoOK, error)

GetDeploymentKibResourceInfo gets deployment kibana resource info

Get info about a Kibana Resource belonging to a given Deployment.

func (*Client) ListDeployments

func (a *Client) ListDeployments(params *ListDeploymentsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListDeploymentsOK, error)

ListDeployments lists deployments

List Deployments.

func (*Client) MigrateDeployment added in v1.1.0

func (a *Client) MigrateDeployment(params *MigrateDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*MigrateDeploymentOK, error)

MigrateDeployment builds migrate deployment template request

Returns a deployment update request that would transform this deployment from its template to the provided one.

func (*Client) ResetElasticsearchUserPassword

func (a *Client) ResetElasticsearchUserPassword(params *ResetElasticsearchUserPasswordParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ResetElasticsearchUserPasswordOK, error)

ResetElasticsearchUserPassword resets elastic user password

Resets the password of the 'elastic' user.

func (*Client) RestartDeploymentEsResource

RestartDeploymentEsResource restarts deployment elasticsearch resource

Restarts an Elasticsearch Resource. If a Resource is active: this command re-applies the existing plan but applies a "cluster_reboot", which issues a restart command and waits for it to complete. If a Resource is inactive: this command starts it up with the most recent successful plan.

func (*Client) RestartDeploymentStatelessResource

RestartDeploymentStatelessResource restarts deployment stateless resource

Restarts a Stateless Resource. If a Resource is active: this command re-applies the existing plan but applies a "cluster_reboot", which issues a restart command and waits for it to complete. If a Resource is inactive: this command starts it up with the most recent successful plan.

func (*Client) RestoreDeployment

func (a *Client) RestoreDeployment(params *RestoreDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RestoreDeploymentOK, error)

RestoreDeployment restores a shutdown deployment

Restores all resources in a Deployment.

func (*Client) RestoreDeploymentResource

func (a *Client) RestoreDeploymentResource(params *RestoreDeploymentResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RestoreDeploymentResourceOK, error)

RestoreDeploymentResource restores a shutdown resource

Restores a shutdown resource belonging to a given Deployment.

func (*Client) ResyncDeployment

func (a *Client) ResyncDeployment(params *ResyncDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ResyncDeploymentOK, error)

ResyncDeployment resynchronizes deployment

Immediately resynchronizes the search index for the selected deployment.

func (*Client) ResyncDeployments

func (a *Client) ResyncDeployments(params *ResyncDeploymentsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ResyncDeploymentsOK, error)

ResyncDeployments resynchronizes deployments

Resynchronizes the search index for all the deployments.

func (*Client) SearchDeployments

func (a *Client) SearchDeployments(params *SearchDeploymentsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SearchDeploymentsOK, error)

SearchDeployments searches deployments

Retrieves the information for all of the deployments that match the specified query.

func (*Client) SearchEligibleRemoteClusters added in v1.2.0

func (a *Client) SearchEligibleRemoteClusters(params *SearchEligibleRemoteClustersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SearchEligibleRemoteClustersOK, error)

SearchEligibleRemoteClusters gets eligible remote clusters

Returns the list of deployments which contain eligible remote clusters for a specific version.

func (*Client) SetAppsearchReadOnlyMode

func (a *Client) SetAppsearchReadOnlyMode(params *SetAppsearchReadOnlyModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetAppsearchReadOnlyModeOK, error)

SetAppsearchReadOnlyMode sets app search read only status

Enable/Disable read-only mode on the given App Search resource.

func (*Client) SetDeploymentEsResourceKeystore

func (a *Client) SetDeploymentEsResourceKeystore(params *SetDeploymentEsResourceKeystoreParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetDeploymentEsResourceKeystoreOK, error)

SetDeploymentEsResourceKeystore adds or remove settings from the elasticsearch resource keystore

Fetches the current values of the keystore for the Elasticsearch resource.

func (*Client) SetDeploymentEsResourceRemoteClusters

SetDeploymentEsResourceRemoteClusters sets remote clusters

Overwrites or creates the remote clusters for the elasticsearch resource.

func (*Client) SetDeploymentResourceRawMetadata

func (a *Client) SetDeploymentResourceRawMetadata(params *SetDeploymentResourceRawMetadataParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetDeploymentResourceRawMetadataOK, error)
SetDeploymentResourceRawMetadata sets a deployment s resource metadata

Advanced use only. Sets the internal metadata, in free-form JSON, for the resource.

Only use the parameter to set the modified JSON that is returned from the get version of the metadata.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) ShutdownDeployment

func (a *Client) ShutdownDeployment(params *ShutdownDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ShutdownDeploymentOK, error)

ShutdownDeployment shuts down deployment

Shuts down all resources in a Deployment.

func (*Client) ShutdownDeploymentEsResource

func (a *Client) ShutdownDeploymentEsResource(params *ShutdownDeploymentEsResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ShutdownDeploymentEsResourceOK, error)

ShutdownDeploymentEsResource shutdowns deployment elasticsearch resource

Shutdown Elasticsearch Resource belonging to a given Deployment.

func (*Client) ShutdownDeploymentStatelessResource

func (a *Client) ShutdownDeploymentStatelessResource(params *ShutdownDeploymentStatelessResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ShutdownDeploymentStatelessResourceOK, error)
ShutdownDeploymentStatelessResource shutdowns deployment stateless resource

Shut down Stateless Resource belonging to a given Deployment.

Kibana cannot be shut down on Elasticsearch Service as it is required for Elasticsearch administrative functions, such as Snapshot Lifecycle Management and version upgrades.

func (*Client) StartDeploymentResourceInstances

StartDeploymentResourceInstances starts instances

Starts instances belonging to a Deployment Resource.

func (*Client) StartDeploymentResourceInstancesAll

StartDeploymentResourceInstancesAll starts all instances

Starts all instances belonging to a Deployment Resource.

func (*Client) StartDeploymentResourceInstancesAllMaintenanceMode

StartDeploymentResourceInstancesAllMaintenanceMode starts maintenance mode all instances

Starts maintenance mode of all instances belonging to a Deployment Resource.

func (*Client) StartDeploymentResourceMaintenanceMode

StartDeploymentResourceMaintenanceMode starts maintenance mode

Starts maintenance mode of instances belonging to a Deployment Resource.

func (*Client) StopDeploymentResourceInstances

StopDeploymentResourceInstances stops instances

Stops instances belonging to a Deployment Resource.

func (*Client) StopDeploymentResourceInstancesAll

StopDeploymentResourceInstancesAll stops all instances

Stops all instances belonging to a Deployment Resource.

func (*Client) StopDeploymentResourceInstancesAllMaintenanceMode

StopDeploymentResourceInstancesAllMaintenanceMode stops maintenance mode all instances

Stops maintenance mode of all instances belonging to a Deployment Resource.

func (*Client) StopDeploymentResourceMaintenanceMode

StopDeploymentResourceMaintenanceMode stops maintenance mode

Stops maintenance mode of instances belonging to a Resource.

func (*Client) UpdateDeployment

func (a *Client) UpdateDeployment(params *UpdateDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateDeploymentOK, error)

UpdateDeployment updates deployment

Updates a Deployment.

func (*Client) UpgradeDeploymentStatelessResource

UpgradeDeploymentStatelessResource upgrades kibana a p m app search inside deployment

Upgrades a running cluster.

type ClientOption added in v1.3.0

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CancelDeploymentResourcePendingPlan(params *CancelDeploymentResourcePendingPlanParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CancelDeploymentResourcePendingPlanOK, error)

	CreateDeployment(params *CreateDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateDeploymentOK, *CreateDeploymentCreated, *CreateDeploymentAccepted, error)

	DeleteDeployment(params *DeleteDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteDeploymentOK, error)

	DeleteDeploymentStatelessResource(params *DeleteDeploymentStatelessResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteDeploymentStatelessResourceOK, error)

	DeploymentApmResetSecretToken(params *DeploymentApmResetSecretTokenParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeploymentApmResetSecretTokenAccepted, error)

	EnableDeploymentResourceCcr(params *EnableDeploymentResourceCcrParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*EnableDeploymentResourceCcrOK, error)

	EnableDeploymentResourceIlm(params *EnableDeploymentResourceIlmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*EnableDeploymentResourceIlmOK, error)

	EnableDeploymentResourceSlm(params *EnableDeploymentResourceSlmParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*EnableDeploymentResourceSlmOK, error)

	GetAppsearchReadOnlyMode(params *GetAppsearchReadOnlyModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAppsearchReadOnlyModeOK, error)

	GetDeployment(params *GetDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentOK, error)

	GetDeploymentApmResourceInfo(params *GetDeploymentApmResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentApmResourceInfoOK, error)

	GetDeploymentAppsearchResourceInfo(params *GetDeploymentAppsearchResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentAppsearchResourceInfoOK, error)

	GetDeploymentEnterpriseSearchResourceInfo(params *GetDeploymentEnterpriseSearchResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentEnterpriseSearchResourceInfoOK, error)

	GetDeploymentEsResourceEligibleRemoteClusters(params *GetDeploymentEsResourceEligibleRemoteClustersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentEsResourceEligibleRemoteClustersOK, error)

	GetDeploymentEsResourceInfo(params *GetDeploymentEsResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentEsResourceInfoOK, error)

	GetDeploymentEsResourceKeystore(params *GetDeploymentEsResourceKeystoreParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentEsResourceKeystoreOK, error)

	GetDeploymentEsResourceRemoteClusters(params *GetDeploymentEsResourceRemoteClustersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentEsResourceRemoteClustersOK, error)

	GetDeploymentKibResourceInfo(params *GetDeploymentKibResourceInfoParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetDeploymentKibResourceInfoOK, error)

	ListDeployments(params *ListDeploymentsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListDeploymentsOK, error)

	MigrateDeployment(params *MigrateDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*MigrateDeploymentOK, error)

	ResetElasticsearchUserPassword(params *ResetElasticsearchUserPasswordParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ResetElasticsearchUserPasswordOK, error)

	RestartDeploymentEsResource(params *RestartDeploymentEsResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RestartDeploymentEsResourceAccepted, error)

	RestartDeploymentStatelessResource(params *RestartDeploymentStatelessResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RestartDeploymentStatelessResourceAccepted, error)

	RestoreDeployment(params *RestoreDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RestoreDeploymentOK, error)

	RestoreDeploymentResource(params *RestoreDeploymentResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RestoreDeploymentResourceOK, error)

	ResyncDeployment(params *ResyncDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ResyncDeploymentOK, error)

	ResyncDeployments(params *ResyncDeploymentsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ResyncDeploymentsOK, error)

	SearchDeployments(params *SearchDeploymentsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SearchDeploymentsOK, error)

	SearchEligibleRemoteClusters(params *SearchEligibleRemoteClustersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SearchEligibleRemoteClustersOK, error)

	SetAppsearchReadOnlyMode(params *SetAppsearchReadOnlyModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetAppsearchReadOnlyModeOK, error)

	SetDeploymentEsResourceKeystore(params *SetDeploymentEsResourceKeystoreParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetDeploymentEsResourceKeystoreOK, error)

	SetDeploymentEsResourceRemoteClusters(params *SetDeploymentEsResourceRemoteClustersParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetDeploymentEsResourceRemoteClustersAccepted, error)

	SetDeploymentResourceRawMetadata(params *SetDeploymentResourceRawMetadataParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetDeploymentResourceRawMetadataOK, error)

	ShutdownDeployment(params *ShutdownDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ShutdownDeploymentOK, error)

	ShutdownDeploymentEsResource(params *ShutdownDeploymentEsResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ShutdownDeploymentEsResourceOK, error)

	ShutdownDeploymentStatelessResource(params *ShutdownDeploymentStatelessResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ShutdownDeploymentStatelessResourceOK, error)

	StartDeploymentResourceInstances(params *StartDeploymentResourceInstancesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StartDeploymentResourceInstancesAccepted, error)

	StartDeploymentResourceInstancesAll(params *StartDeploymentResourceInstancesAllParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StartDeploymentResourceInstancesAllAccepted, error)

	StartDeploymentResourceInstancesAllMaintenanceMode(params *StartDeploymentResourceInstancesAllMaintenanceModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StartDeploymentResourceInstancesAllMaintenanceModeAccepted, error)

	StartDeploymentResourceMaintenanceMode(params *StartDeploymentResourceMaintenanceModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StartDeploymentResourceMaintenanceModeAccepted, error)

	StopDeploymentResourceInstances(params *StopDeploymentResourceInstancesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StopDeploymentResourceInstancesAccepted, error)

	StopDeploymentResourceInstancesAll(params *StopDeploymentResourceInstancesAllParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StopDeploymentResourceInstancesAllAccepted, error)

	StopDeploymentResourceInstancesAllMaintenanceMode(params *StopDeploymentResourceInstancesAllMaintenanceModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StopDeploymentResourceInstancesAllMaintenanceModeAccepted, error)

	StopDeploymentResourceMaintenanceMode(params *StopDeploymentResourceMaintenanceModeParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StopDeploymentResourceMaintenanceModeAccepted, error)

	UpdateDeployment(params *UpdateDeploymentParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateDeploymentOK, error)

	UpgradeDeploymentStatelessResource(params *UpgradeDeploymentStatelessResourceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpgradeDeploymentStatelessResourceAccepted, 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 deployments API client.

type CreateDeploymentAccepted

type CreateDeploymentAccepted struct {
	Payload *models.DeploymentCreateResponse
}
CreateDeploymentAccepted describes a response with status code 202, with default header values.

The request was valid and deployment creation had already been started.

func NewCreateDeploymentAccepted

func NewCreateDeploymentAccepted() *CreateDeploymentAccepted

NewCreateDeploymentAccepted creates a CreateDeploymentAccepted with default headers values

func (*CreateDeploymentAccepted) Error

func (o *CreateDeploymentAccepted) Error() string

func (*CreateDeploymentAccepted) GetPayload

type CreateDeploymentBadRequest

type CreateDeploymentBadRequest struct {
	Payload *models.BasicFailedReply
}
CreateDeploymentBadRequest describes a response with status code 400, with default header values.

The deployment request had errors.

func NewCreateDeploymentBadRequest

func NewCreateDeploymentBadRequest() *CreateDeploymentBadRequest

NewCreateDeploymentBadRequest creates a CreateDeploymentBadRequest with default headers values

func (*CreateDeploymentBadRequest) Error

func (*CreateDeploymentBadRequest) GetPayload

type CreateDeploymentCreated

type CreateDeploymentCreated struct {

	/* The date-time when the resource was created (ISO format relative to UTC)
	 */
	XCloudResourceCreated string

	/* The date-time when the resource was last modified (ISO format relative to UTC)
	 */
	XCloudResourceLastModified string

	/* The resource version, which is used to avoid update conflicts with concurrent operations
	 */
	XCloudResourceVersion string

	Payload *models.DeploymentCreateResponse
}
CreateDeploymentCreated describes a response with status code 201, with default header values.

The request was valid and a new deployment was created

func NewCreateDeploymentCreated

func NewCreateDeploymentCreated() *CreateDeploymentCreated

NewCreateDeploymentCreated creates a CreateDeploymentCreated with default headers values

func (*CreateDeploymentCreated) Error

func (o *CreateDeploymentCreated) Error() string

func (*CreateDeploymentCreated) GetPayload

type CreateDeploymentOK

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

The request was valid (used when validate_only is true).

func NewCreateDeploymentOK

func NewCreateDeploymentOK() *CreateDeploymentOK

NewCreateDeploymentOK creates a CreateDeploymentOK with default headers values

func (*CreateDeploymentOK) Error

func (o *CreateDeploymentOK) Error() string

func (*CreateDeploymentOK) GetPayload

type CreateDeploymentParams

type CreateDeploymentParams struct {

	/* Body.

	   The deployment definition
	*/
	Body *models.DeploymentCreateRequest

	/* RequestID.

	   An optional idempotency token - if two create requests share the same request_id token (min size 32 characters, max 128) then only one deployment will be created, the second request will return the info of that deployment (in the same format described below, but with blanks for auth-related fields)
	*/
	RequestID *string

	/* ValidateOnly.

	   If true, will just validate the Deployment definition but will not perform the creation
	*/
	ValidateOnly *bool

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

CreateDeploymentParams contains all the parameters to send to the API endpoint

for the create deployment operation.

Typically these are written to a http.Request.

func NewCreateDeploymentParams

func NewCreateDeploymentParams() *CreateDeploymentParams

NewCreateDeploymentParams creates a new CreateDeploymentParams 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 NewCreateDeploymentParamsWithContext

func NewCreateDeploymentParamsWithContext(ctx context.Context) *CreateDeploymentParams

NewCreateDeploymentParamsWithContext creates a new CreateDeploymentParams object with the ability to set a context for a request.

func NewCreateDeploymentParamsWithHTTPClient

func NewCreateDeploymentParamsWithHTTPClient(client *http.Client) *CreateDeploymentParams

NewCreateDeploymentParamsWithHTTPClient creates a new CreateDeploymentParams object with the ability to set a custom HTTPClient for a request.

func NewCreateDeploymentParamsWithTimeout

func NewCreateDeploymentParamsWithTimeout(timeout time.Duration) *CreateDeploymentParams

NewCreateDeploymentParamsWithTimeout creates a new CreateDeploymentParams object with the ability to set a timeout on a request.

func (*CreateDeploymentParams) SetBody

SetBody adds the body to the create deployment params

func (*CreateDeploymentParams) SetContext

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

SetContext adds the context to the create deployment params

func (*CreateDeploymentParams) SetDefaults added in v1.3.0

func (o *CreateDeploymentParams) SetDefaults()

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

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

func (*CreateDeploymentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create deployment params

func (*CreateDeploymentParams) SetRequestID

func (o *CreateDeploymentParams) SetRequestID(requestID *string)

SetRequestID adds the requestId to the create deployment params

func (*CreateDeploymentParams) SetTimeout

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

SetTimeout adds the timeout to the create deployment params

func (*CreateDeploymentParams) SetValidateOnly

func (o *CreateDeploymentParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the create deployment params

func (*CreateDeploymentParams) WithBody

WithBody adds the body to the create deployment params

func (*CreateDeploymentParams) WithContext

WithContext adds the context to the create deployment params

func (*CreateDeploymentParams) WithDefaults added in v1.3.0

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

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

func (*CreateDeploymentParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the create deployment params

func (*CreateDeploymentParams) WithRequestID

func (o *CreateDeploymentParams) WithRequestID(requestID *string) *CreateDeploymentParams

WithRequestID adds the requestID to the create deployment params

func (*CreateDeploymentParams) WithTimeout

WithTimeout adds the timeout to the create deployment params

func (*CreateDeploymentParams) WithValidateOnly

func (o *CreateDeploymentParams) WithValidateOnly(validateOnly *bool) *CreateDeploymentParams

WithValidateOnly adds the validateOnly to the create deployment params

func (*CreateDeploymentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateDeploymentReader

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

CreateDeploymentReader is a Reader for the CreateDeployment structure.

func (*CreateDeploymentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateDeploymentUnauthorized

type CreateDeploymentUnauthorized struct {
	Payload *models.BasicFailedReply
}
CreateDeploymentUnauthorized describes a response with status code 401, with default header values.

You are not authorized to perform this action.

func NewCreateDeploymentUnauthorized

func NewCreateDeploymentUnauthorized() *CreateDeploymentUnauthorized

NewCreateDeploymentUnauthorized creates a CreateDeploymentUnauthorized with default headers values

func (*CreateDeploymentUnauthorized) Error

func (*CreateDeploymentUnauthorized) GetPayload

type DeleteDeploymentBadRequest

type DeleteDeploymentBadRequest struct {
	Payload *models.BasicFailedReply
}
DeleteDeploymentBadRequest describes a response with status code 400, with default header values.

The Deployment resources have not been shutdown yet.

func NewDeleteDeploymentBadRequest

func NewDeleteDeploymentBadRequest() *DeleteDeploymentBadRequest

NewDeleteDeploymentBadRequest creates a DeleteDeploymentBadRequest with default headers values

func (*DeleteDeploymentBadRequest) Error

func (*DeleteDeploymentBadRequest) GetPayload

type DeleteDeploymentNotFound

type DeleteDeploymentNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
DeleteDeploymentNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewDeleteDeploymentNotFound

func NewDeleteDeploymentNotFound() *DeleteDeploymentNotFound

NewDeleteDeploymentNotFound creates a DeleteDeploymentNotFound with default headers values

func (*DeleteDeploymentNotFound) Error

func (o *DeleteDeploymentNotFound) Error() string

func (*DeleteDeploymentNotFound) GetPayload

type DeleteDeploymentOK

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

The request was valid and the deployment was deleted.

func NewDeleteDeploymentOK

func NewDeleteDeploymentOK() *DeleteDeploymentOK

NewDeleteDeploymentOK creates a DeleteDeploymentOK with default headers values

func (*DeleteDeploymentOK) Error

func (o *DeleteDeploymentOK) Error() string

func (*DeleteDeploymentOK) GetPayload

type DeleteDeploymentParams

type DeleteDeploymentParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

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

DeleteDeploymentParams contains all the parameters to send to the API endpoint

for the delete deployment operation.

Typically these are written to a http.Request.

func NewDeleteDeploymentParams

func NewDeleteDeploymentParams() *DeleteDeploymentParams

NewDeleteDeploymentParams creates a new DeleteDeploymentParams 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 NewDeleteDeploymentParamsWithContext

func NewDeleteDeploymentParamsWithContext(ctx context.Context) *DeleteDeploymentParams

NewDeleteDeploymentParamsWithContext creates a new DeleteDeploymentParams object with the ability to set a context for a request.

func NewDeleteDeploymentParamsWithHTTPClient

func NewDeleteDeploymentParamsWithHTTPClient(client *http.Client) *DeleteDeploymentParams

NewDeleteDeploymentParamsWithHTTPClient creates a new DeleteDeploymentParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteDeploymentParamsWithTimeout

func NewDeleteDeploymentParamsWithTimeout(timeout time.Duration) *DeleteDeploymentParams

NewDeleteDeploymentParamsWithTimeout creates a new DeleteDeploymentParams object with the ability to set a timeout on a request.

func (*DeleteDeploymentParams) SetContext

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

SetContext adds the context to the delete deployment params

func (*DeleteDeploymentParams) SetDefaults added in v1.3.0

func (o *DeleteDeploymentParams) SetDefaults()

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

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

func (*DeleteDeploymentParams) SetDeploymentID

func (o *DeleteDeploymentParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the delete deployment params

func (*DeleteDeploymentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete deployment params

func (*DeleteDeploymentParams) SetTimeout

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

SetTimeout adds the timeout to the delete deployment params

func (*DeleteDeploymentParams) WithContext

WithContext adds the context to the delete deployment params

func (*DeleteDeploymentParams) WithDefaults added in v1.3.0

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

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

func (*DeleteDeploymentParams) WithDeploymentID

func (o *DeleteDeploymentParams) WithDeploymentID(deploymentID string) *DeleteDeploymentParams

WithDeploymentID adds the deploymentID to the delete deployment params

func (*DeleteDeploymentParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete deployment params

func (*DeleteDeploymentParams) WithTimeout

WithTimeout adds the timeout to the delete deployment params

func (*DeleteDeploymentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteDeploymentReader

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

DeleteDeploymentReader is a Reader for the DeleteDeployment structure.

func (*DeleteDeploymentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteDeploymentStatelessResourceBadRequest

type DeleteDeploymentStatelessResourceBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
DeleteDeploymentStatelessResourceBadRequest describes a response with status code 400, with default header values.

Resource has still instances. (code: `deployments.resource_has_instances`)

func NewDeleteDeploymentStatelessResourceBadRequest

func NewDeleteDeploymentStatelessResourceBadRequest() *DeleteDeploymentStatelessResourceBadRequest

NewDeleteDeploymentStatelessResourceBadRequest creates a DeleteDeploymentStatelessResourceBadRequest with default headers values

func (*DeleteDeploymentStatelessResourceBadRequest) Error

func (*DeleteDeploymentStatelessResourceBadRequest) GetPayload

type DeleteDeploymentStatelessResourceInternalServerError

type DeleteDeploymentStatelessResourceInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
DeleteDeploymentStatelessResourceInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewDeleteDeploymentStatelessResourceInternalServerError

func NewDeleteDeploymentStatelessResourceInternalServerError() *DeleteDeploymentStatelessResourceInternalServerError

NewDeleteDeploymentStatelessResourceInternalServerError creates a DeleteDeploymentStatelessResourceInternalServerError with default headers values

func (*DeleteDeploymentStatelessResourceInternalServerError) Error

func (*DeleteDeploymentStatelessResourceInternalServerError) GetPayload

type DeleteDeploymentStatelessResourceNotFound

type DeleteDeploymentStatelessResourceNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
DeleteDeploymentStatelessResourceNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewDeleteDeploymentStatelessResourceNotFound

func NewDeleteDeploymentStatelessResourceNotFound() *DeleteDeploymentStatelessResourceNotFound

NewDeleteDeploymentStatelessResourceNotFound creates a DeleteDeploymentStatelessResourceNotFound with default headers values

func (*DeleteDeploymentStatelessResourceNotFound) Error

func (*DeleteDeploymentStatelessResourceNotFound) GetPayload

type DeleteDeploymentStatelessResourceOK

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

Standard Deployment Resource Crud Response

func NewDeleteDeploymentStatelessResourceOK

func NewDeleteDeploymentStatelessResourceOK() *DeleteDeploymentStatelessResourceOK

NewDeleteDeploymentStatelessResourceOK creates a DeleteDeploymentStatelessResourceOK with default headers values

func (*DeleteDeploymentStatelessResourceOK) Error

func (*DeleteDeploymentStatelessResourceOK) GetPayload

type DeleteDeploymentStatelessResourceParams

type DeleteDeploymentStatelessResourceParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* StatelessResourceKind.

	   The kind of stateless resource
	*/
	StatelessResourceKind string

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

DeleteDeploymentStatelessResourceParams contains all the parameters to send to the API endpoint

for the delete deployment stateless resource operation.

Typically these are written to a http.Request.

func NewDeleteDeploymentStatelessResourceParams

func NewDeleteDeploymentStatelessResourceParams() *DeleteDeploymentStatelessResourceParams

NewDeleteDeploymentStatelessResourceParams creates a new DeleteDeploymentStatelessResourceParams 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 NewDeleteDeploymentStatelessResourceParamsWithContext

func NewDeleteDeploymentStatelessResourceParamsWithContext(ctx context.Context) *DeleteDeploymentStatelessResourceParams

NewDeleteDeploymentStatelessResourceParamsWithContext creates a new DeleteDeploymentStatelessResourceParams object with the ability to set a context for a request.

func NewDeleteDeploymentStatelessResourceParamsWithHTTPClient

func NewDeleteDeploymentStatelessResourceParamsWithHTTPClient(client *http.Client) *DeleteDeploymentStatelessResourceParams

NewDeleteDeploymentStatelessResourceParamsWithHTTPClient creates a new DeleteDeploymentStatelessResourceParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteDeploymentStatelessResourceParamsWithTimeout

func NewDeleteDeploymentStatelessResourceParamsWithTimeout(timeout time.Duration) *DeleteDeploymentStatelessResourceParams

NewDeleteDeploymentStatelessResourceParamsWithTimeout creates a new DeleteDeploymentStatelessResourceParams object with the ability to set a timeout on a request.

func (*DeleteDeploymentStatelessResourceParams) SetContext

SetContext adds the context to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) SetDefaults added in v1.3.0

func (o *DeleteDeploymentStatelessResourceParams) SetDefaults()

SetDefaults hydrates default values in the delete deployment stateless resource params (not the query body).

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

func (*DeleteDeploymentStatelessResourceParams) SetDeploymentID

func (o *DeleteDeploymentStatelessResourceParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) SetRefID

SetRefID adds the refId to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) SetStatelessResourceKind

func (o *DeleteDeploymentStatelessResourceParams) SetStatelessResourceKind(statelessResourceKind string)

SetStatelessResourceKind adds the statelessResourceKind to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) SetTimeout

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

SetTimeout adds the timeout to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) WithContext

WithContext adds the context to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the delete deployment stateless resource params (not the query body).

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

func (*DeleteDeploymentStatelessResourceParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) WithRefID

WithRefID adds the refID to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) WithStatelessResourceKind

func (o *DeleteDeploymentStatelessResourceParams) WithStatelessResourceKind(statelessResourceKind string) *DeleteDeploymentStatelessResourceParams

WithStatelessResourceKind adds the statelessResourceKind to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) WithTimeout

WithTimeout adds the timeout to the delete deployment stateless resource params

func (*DeleteDeploymentStatelessResourceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteDeploymentStatelessResourceReader

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

DeleteDeploymentStatelessResourceReader is a Reader for the DeleteDeploymentStatelessResource structure.

func (*DeleteDeploymentStatelessResourceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteDeploymentStatelessResourceRetryWith

type DeleteDeploymentStatelessResourceRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
DeleteDeploymentStatelessResourceRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewDeleteDeploymentStatelessResourceRetryWith

func NewDeleteDeploymentStatelessResourceRetryWith() *DeleteDeploymentStatelessResourceRetryWith

NewDeleteDeploymentStatelessResourceRetryWith creates a DeleteDeploymentStatelessResourceRetryWith with default headers values

func (*DeleteDeploymentStatelessResourceRetryWith) Error

func (*DeleteDeploymentStatelessResourceRetryWith) GetPayload

type DeleteDeploymentUnauthorized

type DeleteDeploymentUnauthorized struct {
	Payload *models.BasicFailedReply
}
DeleteDeploymentUnauthorized describes a response with status code 401, with default header values.

You are not authorized to perform this action.

func NewDeleteDeploymentUnauthorized

func NewDeleteDeploymentUnauthorized() *DeleteDeploymentUnauthorized

NewDeleteDeploymentUnauthorized creates a DeleteDeploymentUnauthorized with default headers values

func (*DeleteDeploymentUnauthorized) Error

func (*DeleteDeploymentUnauthorized) GetPayload

type DeploymentApmResetSecretTokenAccepted

type DeploymentApmResetSecretTokenAccepted struct {
	Payload *models.ApmCrudResponse
}
DeploymentApmResetSecretTokenAccepted describes a response with status code 202, with default header values.

Response containing the new secret token, plan to apply it starts

func NewDeploymentApmResetSecretTokenAccepted

func NewDeploymentApmResetSecretTokenAccepted() *DeploymentApmResetSecretTokenAccepted

NewDeploymentApmResetSecretTokenAccepted creates a DeploymentApmResetSecretTokenAccepted with default headers values

func (*DeploymentApmResetSecretTokenAccepted) Error

func (*DeploymentApmResetSecretTokenAccepted) GetPayload

type DeploymentApmResetSecretTokenInternalServerError

type DeploymentApmResetSecretTokenInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
DeploymentApmResetSecretTokenInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewDeploymentApmResetSecretTokenInternalServerError

func NewDeploymentApmResetSecretTokenInternalServerError() *DeploymentApmResetSecretTokenInternalServerError

NewDeploymentApmResetSecretTokenInternalServerError creates a DeploymentApmResetSecretTokenInternalServerError with default headers values

func (*DeploymentApmResetSecretTokenInternalServerError) Error

func (*DeploymentApmResetSecretTokenInternalServerError) GetPayload

type DeploymentApmResetSecretTokenNotFound

type DeploymentApmResetSecretTokenNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
DeploymentApmResetSecretTokenNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewDeploymentApmResetSecretTokenNotFound

func NewDeploymentApmResetSecretTokenNotFound() *DeploymentApmResetSecretTokenNotFound

NewDeploymentApmResetSecretTokenNotFound creates a DeploymentApmResetSecretTokenNotFound with default headers values

func (*DeploymentApmResetSecretTokenNotFound) Error

func (*DeploymentApmResetSecretTokenNotFound) GetPayload

type DeploymentApmResetSecretTokenParams

type DeploymentApmResetSecretTokenParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

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

DeploymentApmResetSecretTokenParams contains all the parameters to send to the API endpoint

for the deployment apm reset secret token operation.

Typically these are written to a http.Request.

func NewDeploymentApmResetSecretTokenParams

func NewDeploymentApmResetSecretTokenParams() *DeploymentApmResetSecretTokenParams

NewDeploymentApmResetSecretTokenParams creates a new DeploymentApmResetSecretTokenParams 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 NewDeploymentApmResetSecretTokenParamsWithContext

func NewDeploymentApmResetSecretTokenParamsWithContext(ctx context.Context) *DeploymentApmResetSecretTokenParams

NewDeploymentApmResetSecretTokenParamsWithContext creates a new DeploymentApmResetSecretTokenParams object with the ability to set a context for a request.

func NewDeploymentApmResetSecretTokenParamsWithHTTPClient

func NewDeploymentApmResetSecretTokenParamsWithHTTPClient(client *http.Client) *DeploymentApmResetSecretTokenParams

NewDeploymentApmResetSecretTokenParamsWithHTTPClient creates a new DeploymentApmResetSecretTokenParams object with the ability to set a custom HTTPClient for a request.

func NewDeploymentApmResetSecretTokenParamsWithTimeout

func NewDeploymentApmResetSecretTokenParamsWithTimeout(timeout time.Duration) *DeploymentApmResetSecretTokenParams

NewDeploymentApmResetSecretTokenParamsWithTimeout creates a new DeploymentApmResetSecretTokenParams object with the ability to set a timeout on a request.

func (*DeploymentApmResetSecretTokenParams) SetContext

SetContext adds the context to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) SetDefaults added in v1.3.0

func (o *DeploymentApmResetSecretTokenParams) SetDefaults()

SetDefaults hydrates default values in the deployment apm reset secret token params (not the query body).

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

func (*DeploymentApmResetSecretTokenParams) SetDeploymentID

func (o *DeploymentApmResetSecretTokenParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) SetRefID

func (o *DeploymentApmResetSecretTokenParams) SetRefID(refID string)

SetRefID adds the refId to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) SetTimeout

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

SetTimeout adds the timeout to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) WithContext

WithContext adds the context to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the deployment apm reset secret token params (not the query body).

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

func (*DeploymentApmResetSecretTokenParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) WithRefID

WithRefID adds the refID to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) WithTimeout

WithTimeout adds the timeout to the deployment apm reset secret token params

func (*DeploymentApmResetSecretTokenParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeploymentApmResetSecretTokenReader

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

DeploymentApmResetSecretTokenReader is a Reader for the DeploymentApmResetSecretToken structure.

func (*DeploymentApmResetSecretTokenReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeploymentApmResetSecretTokenRetryWith

type DeploymentApmResetSecretTokenRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
DeploymentApmResetSecretTokenRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewDeploymentApmResetSecretTokenRetryWith

func NewDeploymentApmResetSecretTokenRetryWith() *DeploymentApmResetSecretTokenRetryWith

NewDeploymentApmResetSecretTokenRetryWith creates a DeploymentApmResetSecretTokenRetryWith with default headers values

func (*DeploymentApmResetSecretTokenRetryWith) Error

func (*DeploymentApmResetSecretTokenRetryWith) GetPayload

type EnableDeploymentResourceCcrNotFound added in v1.3.0

type EnableDeploymentResourceCcrNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
EnableDeploymentResourceCcrNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewEnableDeploymentResourceCcrNotFound added in v1.3.0

func NewEnableDeploymentResourceCcrNotFound() *EnableDeploymentResourceCcrNotFound

NewEnableDeploymentResourceCcrNotFound creates a EnableDeploymentResourceCcrNotFound with default headers values

func (*EnableDeploymentResourceCcrNotFound) Error added in v1.3.0

func (*EnableDeploymentResourceCcrNotFound) GetPayload added in v1.3.0

type EnableDeploymentResourceCcrOK added in v1.3.0

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

Standard response

func NewEnableDeploymentResourceCcrOK added in v1.3.0

func NewEnableDeploymentResourceCcrOK() *EnableDeploymentResourceCcrOK

NewEnableDeploymentResourceCcrOK creates a EnableDeploymentResourceCcrOK with default headers values

func (*EnableDeploymentResourceCcrOK) Error added in v1.3.0

func (*EnableDeploymentResourceCcrOK) GetPayload added in v1.3.0

type EnableDeploymentResourceCcrParams added in v1.3.0

type EnableDeploymentResourceCcrParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ValidateOnly.

	   When `true`, will not enable CCR but returns warnings if any elements may lose availability during CCR enablement
	*/
	ValidateOnly *bool

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

EnableDeploymentResourceCcrParams contains all the parameters to send to the API endpoint

for the enable deployment resource ccr operation.

Typically these are written to a http.Request.

func NewEnableDeploymentResourceCcrParams added in v1.3.0

func NewEnableDeploymentResourceCcrParams() *EnableDeploymentResourceCcrParams

NewEnableDeploymentResourceCcrParams creates a new EnableDeploymentResourceCcrParams 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 NewEnableDeploymentResourceCcrParamsWithContext added in v1.3.0

func NewEnableDeploymentResourceCcrParamsWithContext(ctx context.Context) *EnableDeploymentResourceCcrParams

NewEnableDeploymentResourceCcrParamsWithContext creates a new EnableDeploymentResourceCcrParams object with the ability to set a context for a request.

func NewEnableDeploymentResourceCcrParamsWithHTTPClient added in v1.3.0

func NewEnableDeploymentResourceCcrParamsWithHTTPClient(client *http.Client) *EnableDeploymentResourceCcrParams

NewEnableDeploymentResourceCcrParamsWithHTTPClient creates a new EnableDeploymentResourceCcrParams object with the ability to set a custom HTTPClient for a request.

func NewEnableDeploymentResourceCcrParamsWithTimeout added in v1.3.0

func NewEnableDeploymentResourceCcrParamsWithTimeout(timeout time.Duration) *EnableDeploymentResourceCcrParams

NewEnableDeploymentResourceCcrParamsWithTimeout creates a new EnableDeploymentResourceCcrParams object with the ability to set a timeout on a request.

func (*EnableDeploymentResourceCcrParams) SetContext added in v1.3.0

SetContext adds the context to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) SetDefaults added in v1.3.0

func (o *EnableDeploymentResourceCcrParams) SetDefaults()

SetDefaults hydrates default values in the enable deployment resource ccr params (not the query body).

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

func (*EnableDeploymentResourceCcrParams) SetDeploymentID added in v1.3.0

func (o *EnableDeploymentResourceCcrParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) SetHTTPClient added in v1.3.0

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

SetHTTPClient adds the HTTPClient to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) SetRefID added in v1.3.0

func (o *EnableDeploymentResourceCcrParams) SetRefID(refID string)

SetRefID adds the refId to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) SetTimeout added in v1.3.0

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

SetTimeout adds the timeout to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) SetValidateOnly added in v1.3.0

func (o *EnableDeploymentResourceCcrParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) WithContext added in v1.3.0

WithContext adds the context to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the enable deployment resource ccr params (not the query body).

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

func (*EnableDeploymentResourceCcrParams) WithDeploymentID added in v1.3.0

WithDeploymentID adds the deploymentID to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) WithHTTPClient added in v1.3.0

WithHTTPClient adds the HTTPClient to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) WithRefID added in v1.3.0

WithRefID adds the refID to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) WithTimeout added in v1.3.0

WithTimeout adds the timeout to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) WithValidateOnly added in v1.3.0

func (o *EnableDeploymentResourceCcrParams) WithValidateOnly(validateOnly *bool) *EnableDeploymentResourceCcrParams

WithValidateOnly adds the validateOnly to the enable deployment resource ccr params

func (*EnableDeploymentResourceCcrParams) WriteToRequest added in v1.3.0

WriteToRequest writes these params to a swagger request

type EnableDeploymentResourceCcrReader added in v1.3.0

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

EnableDeploymentResourceCcrReader is a Reader for the EnableDeploymentResourceCcr structure.

func (*EnableDeploymentResourceCcrReader) ReadResponse added in v1.3.0

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

ReadResponse reads a server response into the received o.

type EnableDeploymentResourceCcrRetryWith added in v1.3.0

type EnableDeploymentResourceCcrRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
EnableDeploymentResourceCcrRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewEnableDeploymentResourceCcrRetryWith added in v1.3.0

func NewEnableDeploymentResourceCcrRetryWith() *EnableDeploymentResourceCcrRetryWith

NewEnableDeploymentResourceCcrRetryWith creates a EnableDeploymentResourceCcrRetryWith with default headers values

func (*EnableDeploymentResourceCcrRetryWith) Error added in v1.3.0

func (*EnableDeploymentResourceCcrRetryWith) GetPayload added in v1.3.0

type EnableDeploymentResourceIlmInternalServerError

type EnableDeploymentResourceIlmInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
EnableDeploymentResourceIlmInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewEnableDeploymentResourceIlmInternalServerError

func NewEnableDeploymentResourceIlmInternalServerError() *EnableDeploymentResourceIlmInternalServerError

NewEnableDeploymentResourceIlmInternalServerError creates a EnableDeploymentResourceIlmInternalServerError with default headers values

func (*EnableDeploymentResourceIlmInternalServerError) Error

func (*EnableDeploymentResourceIlmInternalServerError) GetPayload

type EnableDeploymentResourceIlmNotFound

type EnableDeploymentResourceIlmNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
EnableDeploymentResourceIlmNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewEnableDeploymentResourceIlmNotFound

func NewEnableDeploymentResourceIlmNotFound() *EnableDeploymentResourceIlmNotFound

NewEnableDeploymentResourceIlmNotFound creates a EnableDeploymentResourceIlmNotFound with default headers values

func (*EnableDeploymentResourceIlmNotFound) Error

func (*EnableDeploymentResourceIlmNotFound) GetPayload

type EnableDeploymentResourceIlmOK

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

Standard response

func NewEnableDeploymentResourceIlmOK

func NewEnableDeploymentResourceIlmOK() *EnableDeploymentResourceIlmOK

NewEnableDeploymentResourceIlmOK creates a EnableDeploymentResourceIlmOK with default headers values

func (*EnableDeploymentResourceIlmOK) Error

func (*EnableDeploymentResourceIlmOK) GetPayload

type EnableDeploymentResourceIlmParams

type EnableDeploymentResourceIlmParams struct {

	/* Body.

	   Information to build the ILM policies that will be created
	*/
	Body *models.EnableIlmRequest

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ValidateOnly.

	   When `true`, does not enable ILM but returns warnings if any applications may lose availability during ILM migration.
	*/
	ValidateOnly *bool

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

EnableDeploymentResourceIlmParams contains all the parameters to send to the API endpoint

for the enable deployment resource ilm operation.

Typically these are written to a http.Request.

func NewEnableDeploymentResourceIlmParams

func NewEnableDeploymentResourceIlmParams() *EnableDeploymentResourceIlmParams

NewEnableDeploymentResourceIlmParams creates a new EnableDeploymentResourceIlmParams 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 NewEnableDeploymentResourceIlmParamsWithContext

func NewEnableDeploymentResourceIlmParamsWithContext(ctx context.Context) *EnableDeploymentResourceIlmParams

NewEnableDeploymentResourceIlmParamsWithContext creates a new EnableDeploymentResourceIlmParams object with the ability to set a context for a request.

func NewEnableDeploymentResourceIlmParamsWithHTTPClient

func NewEnableDeploymentResourceIlmParamsWithHTTPClient(client *http.Client) *EnableDeploymentResourceIlmParams

NewEnableDeploymentResourceIlmParamsWithHTTPClient creates a new EnableDeploymentResourceIlmParams object with the ability to set a custom HTTPClient for a request.

func NewEnableDeploymentResourceIlmParamsWithTimeout

func NewEnableDeploymentResourceIlmParamsWithTimeout(timeout time.Duration) *EnableDeploymentResourceIlmParams

NewEnableDeploymentResourceIlmParamsWithTimeout creates a new EnableDeploymentResourceIlmParams object with the ability to set a timeout on a request.

func (*EnableDeploymentResourceIlmParams) SetBody

SetBody adds the body to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) SetContext

SetContext adds the context to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) SetDefaults added in v1.3.0

func (o *EnableDeploymentResourceIlmParams) SetDefaults()

SetDefaults hydrates default values in the enable deployment resource ilm params (not the query body).

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

func (*EnableDeploymentResourceIlmParams) SetDeploymentID

func (o *EnableDeploymentResourceIlmParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) SetRefID

func (o *EnableDeploymentResourceIlmParams) SetRefID(refID string)

SetRefID adds the refId to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) SetTimeout

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

SetTimeout adds the timeout to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) SetValidateOnly added in v1.1.0

func (o *EnableDeploymentResourceIlmParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) WithBody

WithBody adds the body to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) WithContext

WithContext adds the context to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the enable deployment resource ilm params (not the query body).

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

func (*EnableDeploymentResourceIlmParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) WithRefID

WithRefID adds the refID to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) WithTimeout

WithTimeout adds the timeout to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) WithValidateOnly added in v1.1.0

func (o *EnableDeploymentResourceIlmParams) WithValidateOnly(validateOnly *bool) *EnableDeploymentResourceIlmParams

WithValidateOnly adds the validateOnly to the enable deployment resource ilm params

func (*EnableDeploymentResourceIlmParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type EnableDeploymentResourceIlmReader

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

EnableDeploymentResourceIlmReader is a Reader for the EnableDeploymentResourceIlm structure.

func (*EnableDeploymentResourceIlmReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type EnableDeploymentResourceIlmRetryWith

type EnableDeploymentResourceIlmRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
EnableDeploymentResourceIlmRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewEnableDeploymentResourceIlmRetryWith

func NewEnableDeploymentResourceIlmRetryWith() *EnableDeploymentResourceIlmRetryWith

NewEnableDeploymentResourceIlmRetryWith creates a EnableDeploymentResourceIlmRetryWith with default headers values

func (*EnableDeploymentResourceIlmRetryWith) Error

func (*EnableDeploymentResourceIlmRetryWith) GetPayload

type EnableDeploymentResourceSlmInternalServerError

type EnableDeploymentResourceSlmInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
EnableDeploymentResourceSlmInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewEnableDeploymentResourceSlmInternalServerError

func NewEnableDeploymentResourceSlmInternalServerError() *EnableDeploymentResourceSlmInternalServerError

NewEnableDeploymentResourceSlmInternalServerError creates a EnableDeploymentResourceSlmInternalServerError with default headers values

func (*EnableDeploymentResourceSlmInternalServerError) Error

func (*EnableDeploymentResourceSlmInternalServerError) GetPayload

type EnableDeploymentResourceSlmNotFound

type EnableDeploymentResourceSlmNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
EnableDeploymentResourceSlmNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewEnableDeploymentResourceSlmNotFound

func NewEnableDeploymentResourceSlmNotFound() *EnableDeploymentResourceSlmNotFound

NewEnableDeploymentResourceSlmNotFound creates a EnableDeploymentResourceSlmNotFound with default headers values

func (*EnableDeploymentResourceSlmNotFound) Error

func (*EnableDeploymentResourceSlmNotFound) GetPayload

type EnableDeploymentResourceSlmOK

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

Standard response

func NewEnableDeploymentResourceSlmOK

func NewEnableDeploymentResourceSlmOK() *EnableDeploymentResourceSlmOK

NewEnableDeploymentResourceSlmOK creates a EnableDeploymentResourceSlmOK with default headers values

func (*EnableDeploymentResourceSlmOK) Error

func (*EnableDeploymentResourceSlmOK) GetPayload

type EnableDeploymentResourceSlmParams

type EnableDeploymentResourceSlmParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ValidateOnly.

	   When `true`, does not enable SLM but returns warnings if any applications may lose availability during SLM migration.
	*/
	ValidateOnly *bool

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

EnableDeploymentResourceSlmParams contains all the parameters to send to the API endpoint

for the enable deployment resource slm operation.

Typically these are written to a http.Request.

func NewEnableDeploymentResourceSlmParams

func NewEnableDeploymentResourceSlmParams() *EnableDeploymentResourceSlmParams

NewEnableDeploymentResourceSlmParams creates a new EnableDeploymentResourceSlmParams 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 NewEnableDeploymentResourceSlmParamsWithContext

func NewEnableDeploymentResourceSlmParamsWithContext(ctx context.Context) *EnableDeploymentResourceSlmParams

NewEnableDeploymentResourceSlmParamsWithContext creates a new EnableDeploymentResourceSlmParams object with the ability to set a context for a request.

func NewEnableDeploymentResourceSlmParamsWithHTTPClient

func NewEnableDeploymentResourceSlmParamsWithHTTPClient(client *http.Client) *EnableDeploymentResourceSlmParams

NewEnableDeploymentResourceSlmParamsWithHTTPClient creates a new EnableDeploymentResourceSlmParams object with the ability to set a custom HTTPClient for a request.

func NewEnableDeploymentResourceSlmParamsWithTimeout

func NewEnableDeploymentResourceSlmParamsWithTimeout(timeout time.Duration) *EnableDeploymentResourceSlmParams

NewEnableDeploymentResourceSlmParamsWithTimeout creates a new EnableDeploymentResourceSlmParams object with the ability to set a timeout on a request.

func (*EnableDeploymentResourceSlmParams) SetContext

SetContext adds the context to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) SetDefaults added in v1.3.0

func (o *EnableDeploymentResourceSlmParams) SetDefaults()

SetDefaults hydrates default values in the enable deployment resource slm params (not the query body).

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

func (*EnableDeploymentResourceSlmParams) SetDeploymentID

func (o *EnableDeploymentResourceSlmParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) SetRefID

func (o *EnableDeploymentResourceSlmParams) SetRefID(refID string)

SetRefID adds the refId to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) SetTimeout

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

SetTimeout adds the timeout to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) SetValidateOnly added in v1.1.0

func (o *EnableDeploymentResourceSlmParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) WithContext

WithContext adds the context to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the enable deployment resource slm params (not the query body).

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

func (*EnableDeploymentResourceSlmParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) WithRefID

WithRefID adds the refID to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) WithTimeout

WithTimeout adds the timeout to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) WithValidateOnly added in v1.1.0

func (o *EnableDeploymentResourceSlmParams) WithValidateOnly(validateOnly *bool) *EnableDeploymentResourceSlmParams

WithValidateOnly adds the validateOnly to the enable deployment resource slm params

func (*EnableDeploymentResourceSlmParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type EnableDeploymentResourceSlmReader

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

EnableDeploymentResourceSlmReader is a Reader for the EnableDeploymentResourceSlm structure.

func (*EnableDeploymentResourceSlmReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type EnableDeploymentResourceSlmRetryWith

type EnableDeploymentResourceSlmRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
EnableDeploymentResourceSlmRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewEnableDeploymentResourceSlmRetryWith

func NewEnableDeploymentResourceSlmRetryWith() *EnableDeploymentResourceSlmRetryWith

NewEnableDeploymentResourceSlmRetryWith creates a EnableDeploymentResourceSlmRetryWith with default headers values

func (*EnableDeploymentResourceSlmRetryWith) Error

func (*EnableDeploymentResourceSlmRetryWith) GetPayload

type GetAppsearchReadOnlyModeInternalServerError

type GetAppsearchReadOnlyModeInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetAppsearchReadOnlyModeInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewGetAppsearchReadOnlyModeInternalServerError

func NewGetAppsearchReadOnlyModeInternalServerError() *GetAppsearchReadOnlyModeInternalServerError

NewGetAppsearchReadOnlyModeInternalServerError creates a GetAppsearchReadOnlyModeInternalServerError with default headers values

func (*GetAppsearchReadOnlyModeInternalServerError) Error

func (*GetAppsearchReadOnlyModeInternalServerError) GetPayload

type GetAppsearchReadOnlyModeNotFound

type GetAppsearchReadOnlyModeNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetAppsearchReadOnlyModeNotFound describes a response with status code 404, with default header values.

The Resource specified by ref_id cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewGetAppsearchReadOnlyModeNotFound

func NewGetAppsearchReadOnlyModeNotFound() *GetAppsearchReadOnlyModeNotFound

NewGetAppsearchReadOnlyModeNotFound creates a GetAppsearchReadOnlyModeNotFound with default headers values

func (*GetAppsearchReadOnlyModeNotFound) Error

func (*GetAppsearchReadOnlyModeNotFound) GetPayload

type GetAppsearchReadOnlyModeOK

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

Standard response

func NewGetAppsearchReadOnlyModeOK

func NewGetAppsearchReadOnlyModeOK() *GetAppsearchReadOnlyModeOK

NewGetAppsearchReadOnlyModeOK creates a GetAppsearchReadOnlyModeOK with default headers values

func (*GetAppsearchReadOnlyModeOK) Error

func (*GetAppsearchReadOnlyModeOK) GetPayload

type GetAppsearchReadOnlyModeParams

type GetAppsearchReadOnlyModeParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

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

GetAppsearchReadOnlyModeParams contains all the parameters to send to the API endpoint

for the get appsearch read only mode operation.

Typically these are written to a http.Request.

func NewGetAppsearchReadOnlyModeParams

func NewGetAppsearchReadOnlyModeParams() *GetAppsearchReadOnlyModeParams

NewGetAppsearchReadOnlyModeParams creates a new GetAppsearchReadOnlyModeParams 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 NewGetAppsearchReadOnlyModeParamsWithContext

func NewGetAppsearchReadOnlyModeParamsWithContext(ctx context.Context) *GetAppsearchReadOnlyModeParams

NewGetAppsearchReadOnlyModeParamsWithContext creates a new GetAppsearchReadOnlyModeParams object with the ability to set a context for a request.

func NewGetAppsearchReadOnlyModeParamsWithHTTPClient

func NewGetAppsearchReadOnlyModeParamsWithHTTPClient(client *http.Client) *GetAppsearchReadOnlyModeParams

NewGetAppsearchReadOnlyModeParamsWithHTTPClient creates a new GetAppsearchReadOnlyModeParams object with the ability to set a custom HTTPClient for a request.

func NewGetAppsearchReadOnlyModeParamsWithTimeout

func NewGetAppsearchReadOnlyModeParamsWithTimeout(timeout time.Duration) *GetAppsearchReadOnlyModeParams

NewGetAppsearchReadOnlyModeParamsWithTimeout creates a new GetAppsearchReadOnlyModeParams object with the ability to set a timeout on a request.

func (*GetAppsearchReadOnlyModeParams) SetContext

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

SetContext adds the context to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) SetDefaults added in v1.3.0

func (o *GetAppsearchReadOnlyModeParams) SetDefaults()

SetDefaults hydrates default values in the get appsearch read only mode params (not the query body).

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

func (*GetAppsearchReadOnlyModeParams) SetDeploymentID

func (o *GetAppsearchReadOnlyModeParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) SetRefID

func (o *GetAppsearchReadOnlyModeParams) SetRefID(refID string)

SetRefID adds the refId to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) SetTimeout

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

SetTimeout adds the timeout to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) WithContext

WithContext adds the context to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get appsearch read only mode params (not the query body).

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

func (*GetAppsearchReadOnlyModeParams) WithDeploymentID

func (o *GetAppsearchReadOnlyModeParams) WithDeploymentID(deploymentID string) *GetAppsearchReadOnlyModeParams

WithDeploymentID adds the deploymentID to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) WithRefID

WithRefID adds the refID to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) WithTimeout

WithTimeout adds the timeout to the get appsearch read only mode params

func (*GetAppsearchReadOnlyModeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAppsearchReadOnlyModeReader

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

GetAppsearchReadOnlyModeReader is a Reader for the GetAppsearchReadOnlyMode structure.

func (*GetAppsearchReadOnlyModeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentApmResourceInfoInternalServerError

type GetDeploymentApmResourceInfoInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentApmResourceInfoInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewGetDeploymentApmResourceInfoInternalServerError

func NewGetDeploymentApmResourceInfoInternalServerError() *GetDeploymentApmResourceInfoInternalServerError

NewGetDeploymentApmResourceInfoInternalServerError creates a GetDeploymentApmResourceInfoInternalServerError with default headers values

func (*GetDeploymentApmResourceInfoInternalServerError) Error

func (*GetDeploymentApmResourceInfoInternalServerError) GetPayload

type GetDeploymentApmResourceInfoNotFound

type GetDeploymentApmResourceInfoNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentApmResourceInfoNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewGetDeploymentApmResourceInfoNotFound

func NewGetDeploymentApmResourceInfoNotFound() *GetDeploymentApmResourceInfoNotFound

NewGetDeploymentApmResourceInfoNotFound creates a GetDeploymentApmResourceInfoNotFound with default headers values

func (*GetDeploymentApmResourceInfoNotFound) Error

func (*GetDeploymentApmResourceInfoNotFound) GetPayload

type GetDeploymentApmResourceInfoOK

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

Standard response.

func NewGetDeploymentApmResourceInfoOK

func NewGetDeploymentApmResourceInfoOK() *GetDeploymentApmResourceInfoOK

NewGetDeploymentApmResourceInfoOK creates a GetDeploymentApmResourceInfoOK with default headers values

func (*GetDeploymentApmResourceInfoOK) Error

func (*GetDeploymentApmResourceInfoOK) GetPayload

type GetDeploymentApmResourceInfoParams

type GetDeploymentApmResourceInfoParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* ShowMetadata.

	   Whether to include the full cluster metadata in the response - can be large per cluster and also include credentials.
	*/
	ShowMetadata *bool

	/* ShowPlanDefaults.

	   If showing plans, whether to show values that are left at their default value (less readable but more informative).
	*/
	ShowPlanDefaults *bool

	/* ShowPlanHistory.

	   Whether to include with the current and pending plan information the plan history- can be very large per cluster.
	*/
	ShowPlanHistory *bool

	/* ShowPlanLogs.

	   Whether to include with the current and pending plan information the attempt log - can be very large per cluster.
	*/
	ShowPlanLogs *bool

	/* ShowPlans.

	   Whether to include the full current and pending plan information in the response - can be large per cluster.

	   Default: true
	*/
	ShowPlans *bool

	/* ShowSettings.

	   Whether to show cluster settings in the response.
	*/
	ShowSettings *bool

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

GetDeploymentApmResourceInfoParams contains all the parameters to send to the API endpoint

for the get deployment apm resource info operation.

Typically these are written to a http.Request.

func NewGetDeploymentApmResourceInfoParams

func NewGetDeploymentApmResourceInfoParams() *GetDeploymentApmResourceInfoParams

NewGetDeploymentApmResourceInfoParams creates a new GetDeploymentApmResourceInfoParams 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 NewGetDeploymentApmResourceInfoParamsWithContext

func NewGetDeploymentApmResourceInfoParamsWithContext(ctx context.Context) *GetDeploymentApmResourceInfoParams

NewGetDeploymentApmResourceInfoParamsWithContext creates a new GetDeploymentApmResourceInfoParams object with the ability to set a context for a request.

func NewGetDeploymentApmResourceInfoParamsWithHTTPClient

func NewGetDeploymentApmResourceInfoParamsWithHTTPClient(client *http.Client) *GetDeploymentApmResourceInfoParams

NewGetDeploymentApmResourceInfoParamsWithHTTPClient creates a new GetDeploymentApmResourceInfoParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentApmResourceInfoParamsWithTimeout

func NewGetDeploymentApmResourceInfoParamsWithTimeout(timeout time.Duration) *GetDeploymentApmResourceInfoParams

NewGetDeploymentApmResourceInfoParamsWithTimeout creates a new GetDeploymentApmResourceInfoParams object with the ability to set a timeout on a request.

func (*GetDeploymentApmResourceInfoParams) SetContext

SetContext adds the context to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetDefaults added in v1.3.0

func (o *GetDeploymentApmResourceInfoParams) SetDefaults()

SetDefaults hydrates default values in the get deployment apm resource info params (not the query body).

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

func (*GetDeploymentApmResourceInfoParams) SetDeploymentID

func (o *GetDeploymentApmResourceInfoParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetRefID

func (o *GetDeploymentApmResourceInfoParams) SetRefID(refID string)

SetRefID adds the refId to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetShowMetadata

func (o *GetDeploymentApmResourceInfoParams) SetShowMetadata(showMetadata *bool)

SetShowMetadata adds the showMetadata to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetShowPlanDefaults

func (o *GetDeploymentApmResourceInfoParams) SetShowPlanDefaults(showPlanDefaults *bool)

SetShowPlanDefaults adds the showPlanDefaults to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetShowPlanHistory

func (o *GetDeploymentApmResourceInfoParams) SetShowPlanHistory(showPlanHistory *bool)

SetShowPlanHistory adds the showPlanHistory to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetShowPlanLogs

func (o *GetDeploymentApmResourceInfoParams) SetShowPlanLogs(showPlanLogs *bool)

SetShowPlanLogs adds the showPlanLogs to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetShowPlans

func (o *GetDeploymentApmResourceInfoParams) SetShowPlans(showPlans *bool)

SetShowPlans adds the showPlans to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetShowSettings

func (o *GetDeploymentApmResourceInfoParams) SetShowSettings(showSettings *bool)

SetShowSettings adds the showSettings to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) SetTimeout

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

SetTimeout adds the timeout to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithContext

WithContext adds the context to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get deployment apm resource info params (not the query body).

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

func (*GetDeploymentApmResourceInfoParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithRefID

WithRefID adds the refID to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithShowMetadata

WithShowMetadata adds the showMetadata to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithShowPlanDefaults

func (o *GetDeploymentApmResourceInfoParams) WithShowPlanDefaults(showPlanDefaults *bool) *GetDeploymentApmResourceInfoParams

WithShowPlanDefaults adds the showPlanDefaults to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithShowPlanHistory

func (o *GetDeploymentApmResourceInfoParams) WithShowPlanHistory(showPlanHistory *bool) *GetDeploymentApmResourceInfoParams

WithShowPlanHistory adds the showPlanHistory to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithShowPlanLogs

WithShowPlanLogs adds the showPlanLogs to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithShowPlans

WithShowPlans adds the showPlans to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithShowSettings

WithShowSettings adds the showSettings to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WithTimeout

WithTimeout adds the timeout to the get deployment apm resource info params

func (*GetDeploymentApmResourceInfoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentApmResourceInfoReader

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

GetDeploymentApmResourceInfoReader is a Reader for the GetDeploymentApmResourceInfo structure.

func (*GetDeploymentApmResourceInfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentAppsearchResourceInfoInternalServerError

type GetDeploymentAppsearchResourceInfoInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentAppsearchResourceInfoInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewGetDeploymentAppsearchResourceInfoInternalServerError

func NewGetDeploymentAppsearchResourceInfoInternalServerError() *GetDeploymentAppsearchResourceInfoInternalServerError

NewGetDeploymentAppsearchResourceInfoInternalServerError creates a GetDeploymentAppsearchResourceInfoInternalServerError with default headers values

func (*GetDeploymentAppsearchResourceInfoInternalServerError) Error

func (*GetDeploymentAppsearchResourceInfoInternalServerError) GetPayload

type GetDeploymentAppsearchResourceInfoNotFound

type GetDeploymentAppsearchResourceInfoNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentAppsearchResourceInfoNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewGetDeploymentAppsearchResourceInfoNotFound

func NewGetDeploymentAppsearchResourceInfoNotFound() *GetDeploymentAppsearchResourceInfoNotFound

NewGetDeploymentAppsearchResourceInfoNotFound creates a GetDeploymentAppsearchResourceInfoNotFound with default headers values

func (*GetDeploymentAppsearchResourceInfoNotFound) Error

func (*GetDeploymentAppsearchResourceInfoNotFound) GetPayload

type GetDeploymentAppsearchResourceInfoOK

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

Standard response.

func NewGetDeploymentAppsearchResourceInfoOK

func NewGetDeploymentAppsearchResourceInfoOK() *GetDeploymentAppsearchResourceInfoOK

NewGetDeploymentAppsearchResourceInfoOK creates a GetDeploymentAppsearchResourceInfoOK with default headers values

func (*GetDeploymentAppsearchResourceInfoOK) Error

func (*GetDeploymentAppsearchResourceInfoOK) GetPayload

type GetDeploymentAppsearchResourceInfoParams

type GetDeploymentAppsearchResourceInfoParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* ShowMetadata.

	   Whether to include the full cluster metadata in the response - can be large per cluster and also include credentials.
	*/
	ShowMetadata *bool

	/* ShowPlanDefaults.

	   If showing plans, whether to show values that are left at their default value (less readable but more informative).
	*/
	ShowPlanDefaults *bool

	/* ShowPlanHistory.

	   Whether to include with the current and pending plan information the plan history- can be very large per cluster.
	*/
	ShowPlanHistory *bool

	/* ShowPlanLogs.

	   Whether to include with the current and pending plan information the attempt log - can be very large per cluster.
	*/
	ShowPlanLogs *bool

	/* ShowPlans.

	   Whether to include the full current and pending plan information in the response - can be large per cluster.

	   Default: true
	*/
	ShowPlans *bool

	/* ShowSettings.

	   Whether to show cluster settings in the response.
	*/
	ShowSettings *bool

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

GetDeploymentAppsearchResourceInfoParams contains all the parameters to send to the API endpoint

for the get deployment appsearch resource info operation.

Typically these are written to a http.Request.

func NewGetDeploymentAppsearchResourceInfoParams

func NewGetDeploymentAppsearchResourceInfoParams() *GetDeploymentAppsearchResourceInfoParams

NewGetDeploymentAppsearchResourceInfoParams creates a new GetDeploymentAppsearchResourceInfoParams 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 NewGetDeploymentAppsearchResourceInfoParamsWithContext

func NewGetDeploymentAppsearchResourceInfoParamsWithContext(ctx context.Context) *GetDeploymentAppsearchResourceInfoParams

NewGetDeploymentAppsearchResourceInfoParamsWithContext creates a new GetDeploymentAppsearchResourceInfoParams object with the ability to set a context for a request.

func NewGetDeploymentAppsearchResourceInfoParamsWithHTTPClient

func NewGetDeploymentAppsearchResourceInfoParamsWithHTTPClient(client *http.Client) *GetDeploymentAppsearchResourceInfoParams

NewGetDeploymentAppsearchResourceInfoParamsWithHTTPClient creates a new GetDeploymentAppsearchResourceInfoParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentAppsearchResourceInfoParamsWithTimeout

func NewGetDeploymentAppsearchResourceInfoParamsWithTimeout(timeout time.Duration) *GetDeploymentAppsearchResourceInfoParams

NewGetDeploymentAppsearchResourceInfoParamsWithTimeout creates a new GetDeploymentAppsearchResourceInfoParams object with the ability to set a timeout on a request.

func (*GetDeploymentAppsearchResourceInfoParams) SetContext

SetContext adds the context to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the get deployment appsearch resource info params (not the query body).

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

func (*GetDeploymentAppsearchResourceInfoParams) SetDeploymentID

func (o *GetDeploymentAppsearchResourceInfoParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetRefID

SetRefID adds the refId to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetShowMetadata

func (o *GetDeploymentAppsearchResourceInfoParams) SetShowMetadata(showMetadata *bool)

SetShowMetadata adds the showMetadata to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetShowPlanDefaults

func (o *GetDeploymentAppsearchResourceInfoParams) SetShowPlanDefaults(showPlanDefaults *bool)

SetShowPlanDefaults adds the showPlanDefaults to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetShowPlanHistory

func (o *GetDeploymentAppsearchResourceInfoParams) SetShowPlanHistory(showPlanHistory *bool)

SetShowPlanHistory adds the showPlanHistory to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetShowPlanLogs

func (o *GetDeploymentAppsearchResourceInfoParams) SetShowPlanLogs(showPlanLogs *bool)

SetShowPlanLogs adds the showPlanLogs to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetShowPlans

func (o *GetDeploymentAppsearchResourceInfoParams) SetShowPlans(showPlans *bool)

SetShowPlans adds the showPlans to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetShowSettings

func (o *GetDeploymentAppsearchResourceInfoParams) SetShowSettings(showSettings *bool)

SetShowSettings adds the showSettings to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) SetTimeout

SetTimeout adds the timeout to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithContext

WithContext adds the context to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get deployment appsearch resource info params (not the query body).

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

func (*GetDeploymentAppsearchResourceInfoParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithRefID

WithRefID adds the refID to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithShowMetadata

WithShowMetadata adds the showMetadata to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithShowPlanDefaults

WithShowPlanDefaults adds the showPlanDefaults to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithShowPlanHistory

WithShowPlanHistory adds the showPlanHistory to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithShowPlanLogs

WithShowPlanLogs adds the showPlanLogs to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithShowPlans

WithShowPlans adds the showPlans to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithShowSettings

WithShowSettings adds the showSettings to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WithTimeout

WithTimeout adds the timeout to the get deployment appsearch resource info params

func (*GetDeploymentAppsearchResourceInfoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentAppsearchResourceInfoReader

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

GetDeploymentAppsearchResourceInfoReader is a Reader for the GetDeploymentAppsearchResourceInfo structure.

func (*GetDeploymentAppsearchResourceInfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentEnterpriseSearchResourceInfoInternalServerError

type GetDeploymentEnterpriseSearchResourceInfoInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEnterpriseSearchResourceInfoInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewGetDeploymentEnterpriseSearchResourceInfoInternalServerError

func NewGetDeploymentEnterpriseSearchResourceInfoInternalServerError() *GetDeploymentEnterpriseSearchResourceInfoInternalServerError

NewGetDeploymentEnterpriseSearchResourceInfoInternalServerError creates a GetDeploymentEnterpriseSearchResourceInfoInternalServerError with default headers values

func (*GetDeploymentEnterpriseSearchResourceInfoInternalServerError) Error

func (*GetDeploymentEnterpriseSearchResourceInfoInternalServerError) GetPayload

type GetDeploymentEnterpriseSearchResourceInfoNotFound

type GetDeploymentEnterpriseSearchResourceInfoNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEnterpriseSearchResourceInfoNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewGetDeploymentEnterpriseSearchResourceInfoNotFound

func NewGetDeploymentEnterpriseSearchResourceInfoNotFound() *GetDeploymentEnterpriseSearchResourceInfoNotFound

NewGetDeploymentEnterpriseSearchResourceInfoNotFound creates a GetDeploymentEnterpriseSearchResourceInfoNotFound with default headers values

func (*GetDeploymentEnterpriseSearchResourceInfoNotFound) Error

func (*GetDeploymentEnterpriseSearchResourceInfoNotFound) GetPayload

type GetDeploymentEnterpriseSearchResourceInfoOK

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

Standard response.

func NewGetDeploymentEnterpriseSearchResourceInfoOK

func NewGetDeploymentEnterpriseSearchResourceInfoOK() *GetDeploymentEnterpriseSearchResourceInfoOK

NewGetDeploymentEnterpriseSearchResourceInfoOK creates a GetDeploymentEnterpriseSearchResourceInfoOK with default headers values

func (*GetDeploymentEnterpriseSearchResourceInfoOK) Error

func (*GetDeploymentEnterpriseSearchResourceInfoOK) GetPayload

type GetDeploymentEnterpriseSearchResourceInfoParams

type GetDeploymentEnterpriseSearchResourceInfoParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* ShowMetadata.

	   Whether to include the full cluster metadata in the response - can be large per cluster and also include credentials.
	*/
	ShowMetadata *bool

	/* ShowPlanDefaults.

	   If showing plans, whether to show values that are left at their default value (less readable but more informative).
	*/
	ShowPlanDefaults *bool

	/* ShowPlanHistory.

	   Whether to include with the current and pending plan information the plan history- can be very large per cluster.
	*/
	ShowPlanHistory *bool

	/* ShowPlanLogs.

	   Whether to include with the current and pending plan information the attempt log - can be very large per cluster.
	*/
	ShowPlanLogs *bool

	/* ShowPlans.

	   Whether to include the full current and pending plan information in the response - can be large per cluster.

	   Default: true
	*/
	ShowPlans *bool

	/* ShowSettings.

	   Whether to show cluster settings in the response.
	*/
	ShowSettings *bool

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

GetDeploymentEnterpriseSearchResourceInfoParams contains all the parameters to send to the API endpoint

for the get deployment enterprise search resource info operation.

Typically these are written to a http.Request.

func NewGetDeploymentEnterpriseSearchResourceInfoParams

func NewGetDeploymentEnterpriseSearchResourceInfoParams() *GetDeploymentEnterpriseSearchResourceInfoParams

NewGetDeploymentEnterpriseSearchResourceInfoParams creates a new GetDeploymentEnterpriseSearchResourceInfoParams 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 NewGetDeploymentEnterpriseSearchResourceInfoParamsWithContext

func NewGetDeploymentEnterpriseSearchResourceInfoParamsWithContext(ctx context.Context) *GetDeploymentEnterpriseSearchResourceInfoParams

NewGetDeploymentEnterpriseSearchResourceInfoParamsWithContext creates a new GetDeploymentEnterpriseSearchResourceInfoParams object with the ability to set a context for a request.

func NewGetDeploymentEnterpriseSearchResourceInfoParamsWithHTTPClient

func NewGetDeploymentEnterpriseSearchResourceInfoParamsWithHTTPClient(client *http.Client) *GetDeploymentEnterpriseSearchResourceInfoParams

NewGetDeploymentEnterpriseSearchResourceInfoParamsWithHTTPClient creates a new GetDeploymentEnterpriseSearchResourceInfoParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentEnterpriseSearchResourceInfoParamsWithTimeout

func NewGetDeploymentEnterpriseSearchResourceInfoParamsWithTimeout(timeout time.Duration) *GetDeploymentEnterpriseSearchResourceInfoParams

NewGetDeploymentEnterpriseSearchResourceInfoParamsWithTimeout creates a new GetDeploymentEnterpriseSearchResourceInfoParams object with the ability to set a timeout on a request.

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetContext

SetContext adds the context to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the get deployment enterprise search resource info params (not the query body).

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

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetDeploymentID

func (o *GetDeploymentEnterpriseSearchResourceInfoParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetRefID

SetRefID adds the refId to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetShowMetadata

func (o *GetDeploymentEnterpriseSearchResourceInfoParams) SetShowMetadata(showMetadata *bool)

SetShowMetadata adds the showMetadata to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetShowPlanDefaults

func (o *GetDeploymentEnterpriseSearchResourceInfoParams) SetShowPlanDefaults(showPlanDefaults *bool)

SetShowPlanDefaults adds the showPlanDefaults to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetShowPlanHistory

func (o *GetDeploymentEnterpriseSearchResourceInfoParams) SetShowPlanHistory(showPlanHistory *bool)

SetShowPlanHistory adds the showPlanHistory to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetShowPlanLogs

func (o *GetDeploymentEnterpriseSearchResourceInfoParams) SetShowPlanLogs(showPlanLogs *bool)

SetShowPlanLogs adds the showPlanLogs to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetShowPlans

func (o *GetDeploymentEnterpriseSearchResourceInfoParams) SetShowPlans(showPlans *bool)

SetShowPlans adds the showPlans to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetShowSettings

func (o *GetDeploymentEnterpriseSearchResourceInfoParams) SetShowSettings(showSettings *bool)

SetShowSettings adds the showSettings to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) SetTimeout

SetTimeout adds the timeout to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithContext

WithContext adds the context to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get deployment enterprise search resource info params (not the query body).

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

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithRefID

WithRefID adds the refID to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithShowMetadata

WithShowMetadata adds the showMetadata to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithShowPlanDefaults

WithShowPlanDefaults adds the showPlanDefaults to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithShowPlanHistory

WithShowPlanHistory adds the showPlanHistory to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithShowPlanLogs

WithShowPlanLogs adds the showPlanLogs to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithShowPlans

WithShowPlans adds the showPlans to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithShowSettings

WithShowSettings adds the showSettings to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WithTimeout

WithTimeout adds the timeout to the get deployment enterprise search resource info params

func (*GetDeploymentEnterpriseSearchResourceInfoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentEnterpriseSearchResourceInfoReader

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

GetDeploymentEnterpriseSearchResourceInfoReader is a Reader for the GetDeploymentEnterpriseSearchResourceInfo structure.

func (*GetDeploymentEnterpriseSearchResourceInfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentEsResourceEligibleRemoteClustersBadRequest added in v1.2.0

type GetDeploymentEsResourceEligibleRemoteClustersBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEsResourceEligibleRemoteClustersBadRequest describes a response with status code 400, with default header values.

The resource specified doesn't yet have a valid version for the current plan or the pending plan. (code: `deployments.resource_does_not_have_a_valid_version`)

func NewGetDeploymentEsResourceEligibleRemoteClustersBadRequest added in v1.2.0

func NewGetDeploymentEsResourceEligibleRemoteClustersBadRequest() *GetDeploymentEsResourceEligibleRemoteClustersBadRequest

NewGetDeploymentEsResourceEligibleRemoteClustersBadRequest creates a GetDeploymentEsResourceEligibleRemoteClustersBadRequest with default headers values

func (*GetDeploymentEsResourceEligibleRemoteClustersBadRequest) Error added in v1.2.0

func (*GetDeploymentEsResourceEligibleRemoteClustersBadRequest) GetPayload added in v1.2.0

type GetDeploymentEsResourceEligibleRemoteClustersNotFound added in v1.2.0

type GetDeploymentEsResourceEligibleRemoteClustersNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEsResourceEligibleRemoteClustersNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewGetDeploymentEsResourceEligibleRemoteClustersNotFound added in v1.2.0

func NewGetDeploymentEsResourceEligibleRemoteClustersNotFound() *GetDeploymentEsResourceEligibleRemoteClustersNotFound

NewGetDeploymentEsResourceEligibleRemoteClustersNotFound creates a GetDeploymentEsResourceEligibleRemoteClustersNotFound with default headers values

func (*GetDeploymentEsResourceEligibleRemoteClustersNotFound) Error added in v1.2.0

func (*GetDeploymentEsResourceEligibleRemoteClustersNotFound) GetPayload added in v1.2.0

type GetDeploymentEsResourceEligibleRemoteClustersOK added in v1.2.0

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

List of deployments which contains eligible remote clusters for the resource

func NewGetDeploymentEsResourceEligibleRemoteClustersOK added in v1.2.0

func NewGetDeploymentEsResourceEligibleRemoteClustersOK() *GetDeploymentEsResourceEligibleRemoteClustersOK

NewGetDeploymentEsResourceEligibleRemoteClustersOK creates a GetDeploymentEsResourceEligibleRemoteClustersOK with default headers values

func (*GetDeploymentEsResourceEligibleRemoteClustersOK) Error added in v1.2.0

func (*GetDeploymentEsResourceEligibleRemoteClustersOK) GetPayload added in v1.2.0

type GetDeploymentEsResourceEligibleRemoteClustersParams added in v1.2.0

type GetDeploymentEsResourceEligibleRemoteClustersParams struct {

	/* Body.

	   (Optional) The search query to run against all deployments containing eligible remote clusters. When not specified, all the eligible deployments are matched.
	*/
	Body *models.SearchRequest

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

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

GetDeploymentEsResourceEligibleRemoteClustersParams contains all the parameters to send to the API endpoint

for the get deployment es resource eligible remote clusters operation.

Typically these are written to a http.Request.

func NewGetDeploymentEsResourceEligibleRemoteClustersParams added in v1.2.0

func NewGetDeploymentEsResourceEligibleRemoteClustersParams() *GetDeploymentEsResourceEligibleRemoteClustersParams

NewGetDeploymentEsResourceEligibleRemoteClustersParams creates a new GetDeploymentEsResourceEligibleRemoteClustersParams 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 NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithContext added in v1.2.0

func NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithContext(ctx context.Context) *GetDeploymentEsResourceEligibleRemoteClustersParams

NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithContext creates a new GetDeploymentEsResourceEligibleRemoteClustersParams object with the ability to set a context for a request.

func NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithHTTPClient added in v1.2.0

func NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithHTTPClient(client *http.Client) *GetDeploymentEsResourceEligibleRemoteClustersParams

NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithHTTPClient creates a new GetDeploymentEsResourceEligibleRemoteClustersParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithTimeout added in v1.2.0

func NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithTimeout(timeout time.Duration) *GetDeploymentEsResourceEligibleRemoteClustersParams

NewGetDeploymentEsResourceEligibleRemoteClustersParamsWithTimeout creates a new GetDeploymentEsResourceEligibleRemoteClustersParams object with the ability to set a timeout on a request.

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) SetBody added in v1.2.0

SetBody adds the body to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) SetContext added in v1.2.0

SetContext adds the context to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the get deployment es resource eligible remote clusters params (not the query body).

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

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) SetDeploymentID added in v1.2.0

func (o *GetDeploymentEsResourceEligibleRemoteClustersParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) SetHTTPClient added in v1.2.0

SetHTTPClient adds the HTTPClient to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) SetRefID added in v1.2.0

SetRefID adds the refId to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) SetTimeout added in v1.2.0

SetTimeout adds the timeout to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) WithBody added in v1.2.0

WithBody adds the body to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) WithContext added in v1.2.0

WithContext adds the context to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get deployment es resource eligible remote clusters params (not the query body).

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

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) WithDeploymentID added in v1.2.0

WithDeploymentID adds the deploymentID to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) WithHTTPClient added in v1.2.0

WithHTTPClient adds the HTTPClient to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) WithRefID added in v1.2.0

WithRefID adds the refID to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) WithTimeout added in v1.2.0

WithTimeout adds the timeout to the get deployment es resource eligible remote clusters params

func (*GetDeploymentEsResourceEligibleRemoteClustersParams) WriteToRequest added in v1.2.0

WriteToRequest writes these params to a swagger request

type GetDeploymentEsResourceEligibleRemoteClustersReader added in v1.2.0

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

GetDeploymentEsResourceEligibleRemoteClustersReader is a Reader for the GetDeploymentEsResourceEligibleRemoteClusters structure.

func (*GetDeploymentEsResourceEligibleRemoteClustersReader) ReadResponse added in v1.2.0

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

ReadResponse reads a server response into the received o.

type GetDeploymentEsResourceInfoInternalServerError

type GetDeploymentEsResourceInfoInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEsResourceInfoInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewGetDeploymentEsResourceInfoInternalServerError

func NewGetDeploymentEsResourceInfoInternalServerError() *GetDeploymentEsResourceInfoInternalServerError

NewGetDeploymentEsResourceInfoInternalServerError creates a GetDeploymentEsResourceInfoInternalServerError with default headers values

func (*GetDeploymentEsResourceInfoInternalServerError) Error

func (*GetDeploymentEsResourceInfoInternalServerError) GetPayload

type GetDeploymentEsResourceInfoNotFound

type GetDeploymentEsResourceInfoNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEsResourceInfoNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewGetDeploymentEsResourceInfoNotFound

func NewGetDeploymentEsResourceInfoNotFound() *GetDeploymentEsResourceInfoNotFound

NewGetDeploymentEsResourceInfoNotFound creates a GetDeploymentEsResourceInfoNotFound with default headers values

func (*GetDeploymentEsResourceInfoNotFound) Error

func (*GetDeploymentEsResourceInfoNotFound) GetPayload

type GetDeploymentEsResourceInfoOK

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

Standard response.

func NewGetDeploymentEsResourceInfoOK

func NewGetDeploymentEsResourceInfoOK() *GetDeploymentEsResourceInfoOK

NewGetDeploymentEsResourceInfoOK creates a GetDeploymentEsResourceInfoOK with default headers values

func (*GetDeploymentEsResourceInfoOK) Error

func (*GetDeploymentEsResourceInfoOK) GetPayload

type GetDeploymentEsResourceInfoParams

type GetDeploymentEsResourceInfoParams struct {

	/* ConvertLegacyPlans.

	   If showing plans, whether to leave pre-2.0.0 plans in their legacy format (the default), or whether to update them to 2.0.x+ format (if 'true').
	*/
	ConvertLegacyPlans *bool

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* EnrichWithTemplate.

	   If showing plans, whether to enrich the plan by including the missing elements from the deployment template it is based on.

	   Default: true
	*/
	EnrichWithTemplate *bool

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* ShowMetadata.

	   Whether to include the full cluster metadata in the response - can be large per cluster and also include credentials.
	*/
	ShowMetadata *bool

	/* ShowPlanDefaults.

	   If showing plans, whether to show values that are left at their default value (less readable but more informative).
	*/
	ShowPlanDefaults *bool

	/* ShowPlanHistory.

	   Whether to include with the current and pending plan information the plan history- can be very large per cluster.
	*/
	ShowPlanHistory *bool

	/* ShowPlanLogs.

	   Whether to include with the current and pending plan information the attempt log - can be very large per cluster.
	*/
	ShowPlanLogs *bool

	/* ShowPlans.

	   Whether to include the full current and pending plan information in the response - can be large per cluster.

	   Default: true
	*/
	ShowPlans *bool

	/* ShowSecurity.

	   Whether to include the Elasticsearch 2.x security information in the response - can be large per cluster and also include credentials.
	*/
	ShowSecurity *bool

	/* ShowSettings.

	   Whether to show cluster settings in the response.
	*/
	ShowSettings *bool

	/* ShowSystemAlerts.

	   Number of system alerts (such as forced restarts due to memory limits) to be included in the response - can be large per cluster. Negative numbers or 0 will not return field.
	*/
	ShowSystemAlerts *int64

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

GetDeploymentEsResourceInfoParams contains all the parameters to send to the API endpoint

for the get deployment es resource info operation.

Typically these are written to a http.Request.

func NewGetDeploymentEsResourceInfoParams

func NewGetDeploymentEsResourceInfoParams() *GetDeploymentEsResourceInfoParams

NewGetDeploymentEsResourceInfoParams creates a new GetDeploymentEsResourceInfoParams 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 NewGetDeploymentEsResourceInfoParamsWithContext

func NewGetDeploymentEsResourceInfoParamsWithContext(ctx context.Context) *GetDeploymentEsResourceInfoParams

NewGetDeploymentEsResourceInfoParamsWithContext creates a new GetDeploymentEsResourceInfoParams object with the ability to set a context for a request.

func NewGetDeploymentEsResourceInfoParamsWithHTTPClient

func NewGetDeploymentEsResourceInfoParamsWithHTTPClient(client *http.Client) *GetDeploymentEsResourceInfoParams

NewGetDeploymentEsResourceInfoParamsWithHTTPClient creates a new GetDeploymentEsResourceInfoParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentEsResourceInfoParamsWithTimeout

func NewGetDeploymentEsResourceInfoParamsWithTimeout(timeout time.Duration) *GetDeploymentEsResourceInfoParams

NewGetDeploymentEsResourceInfoParamsWithTimeout creates a new GetDeploymentEsResourceInfoParams object with the ability to set a timeout on a request.

func (*GetDeploymentEsResourceInfoParams) SetContext

SetContext adds the context to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetConvertLegacyPlans

func (o *GetDeploymentEsResourceInfoParams) SetConvertLegacyPlans(convertLegacyPlans *bool)

SetConvertLegacyPlans adds the convertLegacyPlans to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetDefaults added in v1.3.0

func (o *GetDeploymentEsResourceInfoParams) SetDefaults()

SetDefaults hydrates default values in the get deployment es resource info params (not the query body).

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

func (*GetDeploymentEsResourceInfoParams) SetDeploymentID

func (o *GetDeploymentEsResourceInfoParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetEnrichWithTemplate

func (o *GetDeploymentEsResourceInfoParams) SetEnrichWithTemplate(enrichWithTemplate *bool)

SetEnrichWithTemplate adds the enrichWithTemplate to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetRefID

func (o *GetDeploymentEsResourceInfoParams) SetRefID(refID string)

SetRefID adds the refId to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetShowMetadata

func (o *GetDeploymentEsResourceInfoParams) SetShowMetadata(showMetadata *bool)

SetShowMetadata adds the showMetadata to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetShowPlanDefaults

func (o *GetDeploymentEsResourceInfoParams) SetShowPlanDefaults(showPlanDefaults *bool)

SetShowPlanDefaults adds the showPlanDefaults to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetShowPlanHistory

func (o *GetDeploymentEsResourceInfoParams) SetShowPlanHistory(showPlanHistory *bool)

SetShowPlanHistory adds the showPlanHistory to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetShowPlanLogs

func (o *GetDeploymentEsResourceInfoParams) SetShowPlanLogs(showPlanLogs *bool)

SetShowPlanLogs adds the showPlanLogs to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetShowPlans

func (o *GetDeploymentEsResourceInfoParams) SetShowPlans(showPlans *bool)

SetShowPlans adds the showPlans to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetShowSecurity

func (o *GetDeploymentEsResourceInfoParams) SetShowSecurity(showSecurity *bool)

SetShowSecurity adds the showSecurity to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetShowSettings

func (o *GetDeploymentEsResourceInfoParams) SetShowSettings(showSettings *bool)

SetShowSettings adds the showSettings to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetShowSystemAlerts

func (o *GetDeploymentEsResourceInfoParams) SetShowSystemAlerts(showSystemAlerts *int64)

SetShowSystemAlerts adds the showSystemAlerts to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) SetTimeout

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

SetTimeout adds the timeout to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithContext

WithContext adds the context to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithConvertLegacyPlans

func (o *GetDeploymentEsResourceInfoParams) WithConvertLegacyPlans(convertLegacyPlans *bool) *GetDeploymentEsResourceInfoParams

WithConvertLegacyPlans adds the convertLegacyPlans to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get deployment es resource info params (not the query body).

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

func (*GetDeploymentEsResourceInfoParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithEnrichWithTemplate

func (o *GetDeploymentEsResourceInfoParams) WithEnrichWithTemplate(enrichWithTemplate *bool) *GetDeploymentEsResourceInfoParams

WithEnrichWithTemplate adds the enrichWithTemplate to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithRefID

WithRefID adds the refID to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithShowMetadata

func (o *GetDeploymentEsResourceInfoParams) WithShowMetadata(showMetadata *bool) *GetDeploymentEsResourceInfoParams

WithShowMetadata adds the showMetadata to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithShowPlanDefaults

func (o *GetDeploymentEsResourceInfoParams) WithShowPlanDefaults(showPlanDefaults *bool) *GetDeploymentEsResourceInfoParams

WithShowPlanDefaults adds the showPlanDefaults to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithShowPlanHistory

func (o *GetDeploymentEsResourceInfoParams) WithShowPlanHistory(showPlanHistory *bool) *GetDeploymentEsResourceInfoParams

WithShowPlanHistory adds the showPlanHistory to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithShowPlanLogs

func (o *GetDeploymentEsResourceInfoParams) WithShowPlanLogs(showPlanLogs *bool) *GetDeploymentEsResourceInfoParams

WithShowPlanLogs adds the showPlanLogs to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithShowPlans

WithShowPlans adds the showPlans to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithShowSecurity

func (o *GetDeploymentEsResourceInfoParams) WithShowSecurity(showSecurity *bool) *GetDeploymentEsResourceInfoParams

WithShowSecurity adds the showSecurity to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithShowSettings

func (o *GetDeploymentEsResourceInfoParams) WithShowSettings(showSettings *bool) *GetDeploymentEsResourceInfoParams

WithShowSettings adds the showSettings to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithShowSystemAlerts

func (o *GetDeploymentEsResourceInfoParams) WithShowSystemAlerts(showSystemAlerts *int64) *GetDeploymentEsResourceInfoParams

WithShowSystemAlerts adds the showSystemAlerts to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WithTimeout

WithTimeout adds the timeout to the get deployment es resource info params

func (*GetDeploymentEsResourceInfoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentEsResourceInfoReader

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

GetDeploymentEsResourceInfoReader is a Reader for the GetDeploymentEsResourceInfo structure.

func (*GetDeploymentEsResourceInfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentEsResourceKeystoreInternalServerError

type GetDeploymentEsResourceKeystoreInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEsResourceKeystoreInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.metadata_internal_error`)

func NewGetDeploymentEsResourceKeystoreInternalServerError

func NewGetDeploymentEsResourceKeystoreInternalServerError() *GetDeploymentEsResourceKeystoreInternalServerError

NewGetDeploymentEsResourceKeystoreInternalServerError creates a GetDeploymentEsResourceKeystoreInternalServerError with default headers values

func (*GetDeploymentEsResourceKeystoreInternalServerError) Error

func (*GetDeploymentEsResourceKeystoreInternalServerError) GetPayload

type GetDeploymentEsResourceKeystoreNotFound

type GetDeploymentEsResourceKeystoreNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEsResourceKeystoreNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewGetDeploymentEsResourceKeystoreNotFound

func NewGetDeploymentEsResourceKeystoreNotFound() *GetDeploymentEsResourceKeystoreNotFound

NewGetDeploymentEsResourceKeystoreNotFound creates a GetDeploymentEsResourceKeystoreNotFound with default headers values

func (*GetDeploymentEsResourceKeystoreNotFound) Error

func (*GetDeploymentEsResourceKeystoreNotFound) GetPayload

type GetDeploymentEsResourceKeystoreOK

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

The new value for the keystore contents

func NewGetDeploymentEsResourceKeystoreOK

func NewGetDeploymentEsResourceKeystoreOK() *GetDeploymentEsResourceKeystoreOK

NewGetDeploymentEsResourceKeystoreOK creates a GetDeploymentEsResourceKeystoreOK with default headers values

func (*GetDeploymentEsResourceKeystoreOK) Error

func (*GetDeploymentEsResourceKeystoreOK) GetPayload

type GetDeploymentEsResourceKeystoreParams

type GetDeploymentEsResourceKeystoreParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

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

GetDeploymentEsResourceKeystoreParams contains all the parameters to send to the API endpoint

for the get deployment es resource keystore operation.

Typically these are written to a http.Request.

func NewGetDeploymentEsResourceKeystoreParams

func NewGetDeploymentEsResourceKeystoreParams() *GetDeploymentEsResourceKeystoreParams

NewGetDeploymentEsResourceKeystoreParams creates a new GetDeploymentEsResourceKeystoreParams 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 NewGetDeploymentEsResourceKeystoreParamsWithContext

func NewGetDeploymentEsResourceKeystoreParamsWithContext(ctx context.Context) *GetDeploymentEsResourceKeystoreParams

NewGetDeploymentEsResourceKeystoreParamsWithContext creates a new GetDeploymentEsResourceKeystoreParams object with the ability to set a context for a request.

func NewGetDeploymentEsResourceKeystoreParamsWithHTTPClient

func NewGetDeploymentEsResourceKeystoreParamsWithHTTPClient(client *http.Client) *GetDeploymentEsResourceKeystoreParams

NewGetDeploymentEsResourceKeystoreParamsWithHTTPClient creates a new GetDeploymentEsResourceKeystoreParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentEsResourceKeystoreParamsWithTimeout

func NewGetDeploymentEsResourceKeystoreParamsWithTimeout(timeout time.Duration) *GetDeploymentEsResourceKeystoreParams

NewGetDeploymentEsResourceKeystoreParamsWithTimeout creates a new GetDeploymentEsResourceKeystoreParams object with the ability to set a timeout on a request.

func (*GetDeploymentEsResourceKeystoreParams) SetContext

SetContext adds the context to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) SetDefaults added in v1.3.0

func (o *GetDeploymentEsResourceKeystoreParams) SetDefaults()

SetDefaults hydrates default values in the get deployment es resource keystore params (not the query body).

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

func (*GetDeploymentEsResourceKeystoreParams) SetDeploymentID

func (o *GetDeploymentEsResourceKeystoreParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) SetRefID

func (o *GetDeploymentEsResourceKeystoreParams) SetRefID(refID string)

SetRefID adds the refId to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) SetTimeout

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

SetTimeout adds the timeout to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) WithContext

WithContext adds the context to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get deployment es resource keystore params (not the query body).

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

func (*GetDeploymentEsResourceKeystoreParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) WithRefID

WithRefID adds the refID to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) WithTimeout

WithTimeout adds the timeout to the get deployment es resource keystore params

func (*GetDeploymentEsResourceKeystoreParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentEsResourceKeystoreReader

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

GetDeploymentEsResourceKeystoreReader is a Reader for the GetDeploymentEsResourceKeystore structure.

func (*GetDeploymentEsResourceKeystoreReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentEsResourceKeystoreRetryWith

type GetDeploymentEsResourceKeystoreRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEsResourceKeystoreRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewGetDeploymentEsResourceKeystoreRetryWith

func NewGetDeploymentEsResourceKeystoreRetryWith() *GetDeploymentEsResourceKeystoreRetryWith

NewGetDeploymentEsResourceKeystoreRetryWith creates a GetDeploymentEsResourceKeystoreRetryWith with default headers values

func (*GetDeploymentEsResourceKeystoreRetryWith) Error

func (*GetDeploymentEsResourceKeystoreRetryWith) GetPayload

type GetDeploymentEsResourceRemoteClustersNotFound

type GetDeploymentEsResourceRemoteClustersNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentEsResourceRemoteClustersNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewGetDeploymentEsResourceRemoteClustersNotFound

func NewGetDeploymentEsResourceRemoteClustersNotFound() *GetDeploymentEsResourceRemoteClustersNotFound

NewGetDeploymentEsResourceRemoteClustersNotFound creates a GetDeploymentEsResourceRemoteClustersNotFound with default headers values

func (*GetDeploymentEsResourceRemoteClustersNotFound) Error

func (*GetDeploymentEsResourceRemoteClustersNotFound) GetPayload

type GetDeploymentEsResourceRemoteClustersOK

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

List of remote clusters for the resource

func NewGetDeploymentEsResourceRemoteClustersOK

func NewGetDeploymentEsResourceRemoteClustersOK() *GetDeploymentEsResourceRemoteClustersOK

NewGetDeploymentEsResourceRemoteClustersOK creates a GetDeploymentEsResourceRemoteClustersOK with default headers values

func (*GetDeploymentEsResourceRemoteClustersOK) Error

func (*GetDeploymentEsResourceRemoteClustersOK) GetPayload

type GetDeploymentEsResourceRemoteClustersParams

type GetDeploymentEsResourceRemoteClustersParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

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

GetDeploymentEsResourceRemoteClustersParams contains all the parameters to send to the API endpoint

for the get deployment es resource remote clusters operation.

Typically these are written to a http.Request.

func NewGetDeploymentEsResourceRemoteClustersParams

func NewGetDeploymentEsResourceRemoteClustersParams() *GetDeploymentEsResourceRemoteClustersParams

NewGetDeploymentEsResourceRemoteClustersParams creates a new GetDeploymentEsResourceRemoteClustersParams 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 NewGetDeploymentEsResourceRemoteClustersParamsWithContext

func NewGetDeploymentEsResourceRemoteClustersParamsWithContext(ctx context.Context) *GetDeploymentEsResourceRemoteClustersParams

NewGetDeploymentEsResourceRemoteClustersParamsWithContext creates a new GetDeploymentEsResourceRemoteClustersParams object with the ability to set a context for a request.

func NewGetDeploymentEsResourceRemoteClustersParamsWithHTTPClient

func NewGetDeploymentEsResourceRemoteClustersParamsWithHTTPClient(client *http.Client) *GetDeploymentEsResourceRemoteClustersParams

NewGetDeploymentEsResourceRemoteClustersParamsWithHTTPClient creates a new GetDeploymentEsResourceRemoteClustersParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentEsResourceRemoteClustersParamsWithTimeout

func NewGetDeploymentEsResourceRemoteClustersParamsWithTimeout(timeout time.Duration) *GetDeploymentEsResourceRemoteClustersParams

NewGetDeploymentEsResourceRemoteClustersParamsWithTimeout creates a new GetDeploymentEsResourceRemoteClustersParams object with the ability to set a timeout on a request.

func (*GetDeploymentEsResourceRemoteClustersParams) SetContext

SetContext adds the context to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the get deployment es resource remote clusters params (not the query body).

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

func (*GetDeploymentEsResourceRemoteClustersParams) SetDeploymentID

func (o *GetDeploymentEsResourceRemoteClustersParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) SetRefID

SetRefID adds the refId to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) SetTimeout

SetTimeout adds the timeout to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) WithContext

WithContext adds the context to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get deployment es resource remote clusters params (not the query body).

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

func (*GetDeploymentEsResourceRemoteClustersParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) WithRefID

WithRefID adds the refID to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) WithTimeout

WithTimeout adds the timeout to the get deployment es resource remote clusters params

func (*GetDeploymentEsResourceRemoteClustersParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentEsResourceRemoteClustersReader

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

GetDeploymentEsResourceRemoteClustersReader is a Reader for the GetDeploymentEsResourceRemoteClusters structure.

func (*GetDeploymentEsResourceRemoteClustersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentKibResourceInfoInternalServerError

type GetDeploymentKibResourceInfoInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentKibResourceInfoInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewGetDeploymentKibResourceInfoInternalServerError

func NewGetDeploymentKibResourceInfoInternalServerError() *GetDeploymentKibResourceInfoInternalServerError

NewGetDeploymentKibResourceInfoInternalServerError creates a GetDeploymentKibResourceInfoInternalServerError with default headers values

func (*GetDeploymentKibResourceInfoInternalServerError) Error

func (*GetDeploymentKibResourceInfoInternalServerError) GetPayload

type GetDeploymentKibResourceInfoNotFound

type GetDeploymentKibResourceInfoNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentKibResourceInfoNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewGetDeploymentKibResourceInfoNotFound

func NewGetDeploymentKibResourceInfoNotFound() *GetDeploymentKibResourceInfoNotFound

NewGetDeploymentKibResourceInfoNotFound creates a GetDeploymentKibResourceInfoNotFound with default headers values

func (*GetDeploymentKibResourceInfoNotFound) Error

func (*GetDeploymentKibResourceInfoNotFound) GetPayload

type GetDeploymentKibResourceInfoOK

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

Standard response.

func NewGetDeploymentKibResourceInfoOK

func NewGetDeploymentKibResourceInfoOK() *GetDeploymentKibResourceInfoOK

NewGetDeploymentKibResourceInfoOK creates a GetDeploymentKibResourceInfoOK with default headers values

func (*GetDeploymentKibResourceInfoOK) Error

func (*GetDeploymentKibResourceInfoOK) GetPayload

type GetDeploymentKibResourceInfoParams

type GetDeploymentKibResourceInfoParams struct {

	/* ConvertLegacyPlans.

	   If showing plans, whether to leave pre-2.0.0 plans in their legacy format (the default), or whether to update them to 2.0.x+ format (if 'true').
	*/
	ConvertLegacyPlans *bool

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* ShowMetadata.

	   Whether to include the full cluster metadata in the response - can be large per cluster and also include credentials.
	*/
	ShowMetadata *bool

	/* ShowPlanDefaults.

	   If showing plans, whether to show values that are left at their default value (less readable but more informative).
	*/
	ShowPlanDefaults *bool

	/* ShowPlanHistory.

	   Whether to include with the current and pending plan information the plan history- can be very large per cluster.
	*/
	ShowPlanHistory *bool

	/* ShowPlanLogs.

	   Whether to include with the current and pending plan information the attempt log - can be very large per cluster.
	*/
	ShowPlanLogs *bool

	/* ShowPlans.

	   Whether to include the full current and pending plan information in the response - can be large per cluster.

	   Default: true
	*/
	ShowPlans *bool

	/* ShowSettings.

	   Whether to show cluster settings in the response.
	*/
	ShowSettings *bool

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

GetDeploymentKibResourceInfoParams contains all the parameters to send to the API endpoint

for the get deployment kib resource info operation.

Typically these are written to a http.Request.

func NewGetDeploymentKibResourceInfoParams

func NewGetDeploymentKibResourceInfoParams() *GetDeploymentKibResourceInfoParams

NewGetDeploymentKibResourceInfoParams creates a new GetDeploymentKibResourceInfoParams 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 NewGetDeploymentKibResourceInfoParamsWithContext

func NewGetDeploymentKibResourceInfoParamsWithContext(ctx context.Context) *GetDeploymentKibResourceInfoParams

NewGetDeploymentKibResourceInfoParamsWithContext creates a new GetDeploymentKibResourceInfoParams object with the ability to set a context for a request.

func NewGetDeploymentKibResourceInfoParamsWithHTTPClient

func NewGetDeploymentKibResourceInfoParamsWithHTTPClient(client *http.Client) *GetDeploymentKibResourceInfoParams

NewGetDeploymentKibResourceInfoParamsWithHTTPClient creates a new GetDeploymentKibResourceInfoParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentKibResourceInfoParamsWithTimeout

func NewGetDeploymentKibResourceInfoParamsWithTimeout(timeout time.Duration) *GetDeploymentKibResourceInfoParams

NewGetDeploymentKibResourceInfoParamsWithTimeout creates a new GetDeploymentKibResourceInfoParams object with the ability to set a timeout on a request.

func (*GetDeploymentKibResourceInfoParams) SetContext

SetContext adds the context to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetConvertLegacyPlans

func (o *GetDeploymentKibResourceInfoParams) SetConvertLegacyPlans(convertLegacyPlans *bool)

SetConvertLegacyPlans adds the convertLegacyPlans to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetDefaults added in v1.3.0

func (o *GetDeploymentKibResourceInfoParams) SetDefaults()

SetDefaults hydrates default values in the get deployment kib resource info params (not the query body).

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

func (*GetDeploymentKibResourceInfoParams) SetDeploymentID

func (o *GetDeploymentKibResourceInfoParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetRefID

func (o *GetDeploymentKibResourceInfoParams) SetRefID(refID string)

SetRefID adds the refId to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetShowMetadata

func (o *GetDeploymentKibResourceInfoParams) SetShowMetadata(showMetadata *bool)

SetShowMetadata adds the showMetadata to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetShowPlanDefaults

func (o *GetDeploymentKibResourceInfoParams) SetShowPlanDefaults(showPlanDefaults *bool)

SetShowPlanDefaults adds the showPlanDefaults to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetShowPlanHistory

func (o *GetDeploymentKibResourceInfoParams) SetShowPlanHistory(showPlanHistory *bool)

SetShowPlanHistory adds the showPlanHistory to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetShowPlanLogs

func (o *GetDeploymentKibResourceInfoParams) SetShowPlanLogs(showPlanLogs *bool)

SetShowPlanLogs adds the showPlanLogs to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetShowPlans

func (o *GetDeploymentKibResourceInfoParams) SetShowPlans(showPlans *bool)

SetShowPlans adds the showPlans to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetShowSettings

func (o *GetDeploymentKibResourceInfoParams) SetShowSettings(showSettings *bool)

SetShowSettings adds the showSettings to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) SetTimeout

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

SetTimeout adds the timeout to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithContext

WithContext adds the context to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithConvertLegacyPlans

func (o *GetDeploymentKibResourceInfoParams) WithConvertLegacyPlans(convertLegacyPlans *bool) *GetDeploymentKibResourceInfoParams

WithConvertLegacyPlans adds the convertLegacyPlans to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the get deployment kib resource info params (not the query body).

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

func (*GetDeploymentKibResourceInfoParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithRefID

WithRefID adds the refID to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithShowMetadata

WithShowMetadata adds the showMetadata to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithShowPlanDefaults

func (o *GetDeploymentKibResourceInfoParams) WithShowPlanDefaults(showPlanDefaults *bool) *GetDeploymentKibResourceInfoParams

WithShowPlanDefaults adds the showPlanDefaults to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithShowPlanHistory

func (o *GetDeploymentKibResourceInfoParams) WithShowPlanHistory(showPlanHistory *bool) *GetDeploymentKibResourceInfoParams

WithShowPlanHistory adds the showPlanHistory to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithShowPlanLogs

WithShowPlanLogs adds the showPlanLogs to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithShowPlans

WithShowPlans adds the showPlans to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithShowSettings

WithShowSettings adds the showSettings to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WithTimeout

WithTimeout adds the timeout to the get deployment kib resource info params

func (*GetDeploymentKibResourceInfoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentKibResourceInfoReader

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

GetDeploymentKibResourceInfoReader is a Reader for the GetDeploymentKibResourceInfo structure.

func (*GetDeploymentKibResourceInfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentNotFound

type GetDeploymentNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
GetDeploymentNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewGetDeploymentNotFound

func NewGetDeploymentNotFound() *GetDeploymentNotFound

NewGetDeploymentNotFound creates a GetDeploymentNotFound with default headers values

func (*GetDeploymentNotFound) Error

func (o *GetDeploymentNotFound) Error() string

func (*GetDeploymentNotFound) GetPayload

type GetDeploymentOK

type GetDeploymentOK struct {

	/* The date-time when the resource was created (ISO format relative to UTC)
	 */
	XCloudResourceCreated string

	/* The date-time when the resource was last modified (ISO format relative to UTC)
	 */
	XCloudResourceLastModified string

	/* The resource version, which is used to avoid update conflicts with concurrent operations
	 */
	XCloudResourceVersion string

	Payload *models.DeploymentGetResponse
}
GetDeploymentOK describes a response with status code 200, with default header values.

The Deployment info response

func NewGetDeploymentOK

func NewGetDeploymentOK() *GetDeploymentOK

NewGetDeploymentOK creates a GetDeploymentOK with default headers values

func (*GetDeploymentOK) Error

func (o *GetDeploymentOK) Error() string

func (*GetDeploymentOK) GetPayload

func (o *GetDeploymentOK) GetPayload() *models.DeploymentGetResponse

type GetDeploymentParams

type GetDeploymentParams struct {

	/* ConvertLegacyPlans.

	   If showing plans, whether to leave pre-2.0.0 plans in their legacy format (the default), or whether to update them to 2.0.x+ format (if 'true')
	*/
	ConvertLegacyPlans *bool

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* EnrichWithTemplate.

	   If showing plans, whether to enrich the plan by including the missing elements from the deployment template it is based on

	   Default: true
	*/
	EnrichWithTemplate *bool

	/* ShowMetadata.

	   Whether to include the full cluster metadata in the response - can be large per cluster and also include credentials
	*/
	ShowMetadata *bool

	/* ShowPlanDefaults.

	   If showing plans, whether to show values that are left at their default value (less readable but more informative)
	*/
	ShowPlanDefaults *bool

	/* ShowPlanHistory.

	   Whether to include with the current and pending plan information the plan history- can be very large per cluster
	*/
	ShowPlanHistory *bool

	/* ShowPlanLogs.

	   Whether to include with the current and pending plan information the attempt log - can be very large per cluster
	*/
	ShowPlanLogs *bool

	/* ShowPlans.

	   Whether to include the full current and pending plan information in the response - can be large per cluster

	   Default: true
	*/
	ShowPlans *bool

	/* ShowSecurity.

	   Whether to include the Elasticsearch 2.x security information in the response - can be large per cluster and also include credentials
	*/
	ShowSecurity *bool

	/* ShowSettings.

	   Whether to show cluster settings in the response.
	*/
	ShowSettings *bool

	/* ShowSystemAlerts.

	   Number of system alerts (such as forced restarts due to memory limits) to be included in the response - can be large per cluster. Negative numbers or 0 will not return field.
	*/
	ShowSystemAlerts *int64

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

GetDeploymentParams contains all the parameters to send to the API endpoint

for the get deployment operation.

Typically these are written to a http.Request.

func NewGetDeploymentParams

func NewGetDeploymentParams() *GetDeploymentParams

NewGetDeploymentParams creates a new GetDeploymentParams 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 NewGetDeploymentParamsWithContext

func NewGetDeploymentParamsWithContext(ctx context.Context) *GetDeploymentParams

NewGetDeploymentParamsWithContext creates a new GetDeploymentParams object with the ability to set a context for a request.

func NewGetDeploymentParamsWithHTTPClient

func NewGetDeploymentParamsWithHTTPClient(client *http.Client) *GetDeploymentParams

NewGetDeploymentParamsWithHTTPClient creates a new GetDeploymentParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentParamsWithTimeout

func NewGetDeploymentParamsWithTimeout(timeout time.Duration) *GetDeploymentParams

NewGetDeploymentParamsWithTimeout creates a new GetDeploymentParams object with the ability to set a timeout on a request.

func (*GetDeploymentParams) SetContext

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

SetContext adds the context to the get deployment params

func (*GetDeploymentParams) SetConvertLegacyPlans

func (o *GetDeploymentParams) SetConvertLegacyPlans(convertLegacyPlans *bool)

SetConvertLegacyPlans adds the convertLegacyPlans to the get deployment params

func (*GetDeploymentParams) SetDefaults added in v1.3.0

func (o *GetDeploymentParams) SetDefaults()

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

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

func (*GetDeploymentParams) SetDeploymentID

func (o *GetDeploymentParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the get deployment params

func (*GetDeploymentParams) SetEnrichWithTemplate

func (o *GetDeploymentParams) SetEnrichWithTemplate(enrichWithTemplate *bool)

SetEnrichWithTemplate adds the enrichWithTemplate to the get deployment params

func (*GetDeploymentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment params

func (*GetDeploymentParams) SetShowMetadata

func (o *GetDeploymentParams) SetShowMetadata(showMetadata *bool)

SetShowMetadata adds the showMetadata to the get deployment params

func (*GetDeploymentParams) SetShowPlanDefaults

func (o *GetDeploymentParams) SetShowPlanDefaults(showPlanDefaults *bool)

SetShowPlanDefaults adds the showPlanDefaults to the get deployment params

func (*GetDeploymentParams) SetShowPlanHistory

func (o *GetDeploymentParams) SetShowPlanHistory(showPlanHistory *bool)

SetShowPlanHistory adds the showPlanHistory to the get deployment params

func (*GetDeploymentParams) SetShowPlanLogs

func (o *GetDeploymentParams) SetShowPlanLogs(showPlanLogs *bool)

SetShowPlanLogs adds the showPlanLogs to the get deployment params

func (*GetDeploymentParams) SetShowPlans

func (o *GetDeploymentParams) SetShowPlans(showPlans *bool)

SetShowPlans adds the showPlans to the get deployment params

func (*GetDeploymentParams) SetShowSecurity

func (o *GetDeploymentParams) SetShowSecurity(showSecurity *bool)

SetShowSecurity adds the showSecurity to the get deployment params

func (*GetDeploymentParams) SetShowSettings

func (o *GetDeploymentParams) SetShowSettings(showSettings *bool)

SetShowSettings adds the showSettings to the get deployment params

func (*GetDeploymentParams) SetShowSystemAlerts

func (o *GetDeploymentParams) SetShowSystemAlerts(showSystemAlerts *int64)

SetShowSystemAlerts adds the showSystemAlerts to the get deployment params

func (*GetDeploymentParams) SetTimeout

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

SetTimeout adds the timeout to the get deployment params

func (*GetDeploymentParams) WithContext

WithContext adds the context to the get deployment params

func (*GetDeploymentParams) WithConvertLegacyPlans

func (o *GetDeploymentParams) WithConvertLegacyPlans(convertLegacyPlans *bool) *GetDeploymentParams

WithConvertLegacyPlans adds the convertLegacyPlans to the get deployment params

func (*GetDeploymentParams) WithDefaults added in v1.3.0

func (o *GetDeploymentParams) WithDefaults() *GetDeploymentParams

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

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

func (*GetDeploymentParams) WithDeploymentID

func (o *GetDeploymentParams) WithDeploymentID(deploymentID string) *GetDeploymentParams

WithDeploymentID adds the deploymentID to the get deployment params

func (*GetDeploymentParams) WithEnrichWithTemplate

func (o *GetDeploymentParams) WithEnrichWithTemplate(enrichWithTemplate *bool) *GetDeploymentParams

WithEnrichWithTemplate adds the enrichWithTemplate to the get deployment params

func (*GetDeploymentParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get deployment params

func (*GetDeploymentParams) WithShowMetadata

func (o *GetDeploymentParams) WithShowMetadata(showMetadata *bool) *GetDeploymentParams

WithShowMetadata adds the showMetadata to the get deployment params

func (*GetDeploymentParams) WithShowPlanDefaults

func (o *GetDeploymentParams) WithShowPlanDefaults(showPlanDefaults *bool) *GetDeploymentParams

WithShowPlanDefaults adds the showPlanDefaults to the get deployment params

func (*GetDeploymentParams) WithShowPlanHistory

func (o *GetDeploymentParams) WithShowPlanHistory(showPlanHistory *bool) *GetDeploymentParams

WithShowPlanHistory adds the showPlanHistory to the get deployment params

func (*GetDeploymentParams) WithShowPlanLogs

func (o *GetDeploymentParams) WithShowPlanLogs(showPlanLogs *bool) *GetDeploymentParams

WithShowPlanLogs adds the showPlanLogs to the get deployment params

func (*GetDeploymentParams) WithShowPlans

func (o *GetDeploymentParams) WithShowPlans(showPlans *bool) *GetDeploymentParams

WithShowPlans adds the showPlans to the get deployment params

func (*GetDeploymentParams) WithShowSecurity

func (o *GetDeploymentParams) WithShowSecurity(showSecurity *bool) *GetDeploymentParams

WithShowSecurity adds the showSecurity to the get deployment params

func (*GetDeploymentParams) WithShowSettings

func (o *GetDeploymentParams) WithShowSettings(showSettings *bool) *GetDeploymentParams

WithShowSettings adds the showSettings to the get deployment params

func (*GetDeploymentParams) WithShowSystemAlerts

func (o *GetDeploymentParams) WithShowSystemAlerts(showSystemAlerts *int64) *GetDeploymentParams

WithShowSystemAlerts adds the showSystemAlerts to the get deployment params

func (*GetDeploymentParams) WithTimeout

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

WithTimeout adds the timeout to the get deployment params

func (*GetDeploymentParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetDeploymentReader

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

GetDeploymentReader is a Reader for the GetDeployment structure.

func (*GetDeploymentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentUnauthorized

type GetDeploymentUnauthorized struct {
	Payload *models.BasicFailedReply
}
GetDeploymentUnauthorized describes a response with status code 401, with default header values.

You are not authorized to perform this action.

func NewGetDeploymentUnauthorized

func NewGetDeploymentUnauthorized() *GetDeploymentUnauthorized

NewGetDeploymentUnauthorized creates a GetDeploymentUnauthorized with default headers values

func (*GetDeploymentUnauthorized) Error

func (o *GetDeploymentUnauthorized) Error() string

func (*GetDeploymentUnauthorized) GetPayload

type ListDeploymentsOK

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

The list of deployments that belong to the authenticated user.

func NewListDeploymentsOK

func NewListDeploymentsOK() *ListDeploymentsOK

NewListDeploymentsOK creates a ListDeploymentsOK with default headers values

func (*ListDeploymentsOK) Error

func (o *ListDeploymentsOK) Error() string

func (*ListDeploymentsOK) GetPayload

type ListDeploymentsParams

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

ListDeploymentsParams contains all the parameters to send to the API endpoint

for the list deployments operation.

Typically these are written to a http.Request.

func NewListDeploymentsParams

func NewListDeploymentsParams() *ListDeploymentsParams

NewListDeploymentsParams creates a new ListDeploymentsParams 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 NewListDeploymentsParamsWithContext

func NewListDeploymentsParamsWithContext(ctx context.Context) *ListDeploymentsParams

NewListDeploymentsParamsWithContext creates a new ListDeploymentsParams object with the ability to set a context for a request.

func NewListDeploymentsParamsWithHTTPClient

func NewListDeploymentsParamsWithHTTPClient(client *http.Client) *ListDeploymentsParams

NewListDeploymentsParamsWithHTTPClient creates a new ListDeploymentsParams object with the ability to set a custom HTTPClient for a request.

func NewListDeploymentsParamsWithTimeout

func NewListDeploymentsParamsWithTimeout(timeout time.Duration) *ListDeploymentsParams

NewListDeploymentsParamsWithTimeout creates a new ListDeploymentsParams object with the ability to set a timeout on a request.

func (*ListDeploymentsParams) SetContext

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

SetContext adds the context to the list deployments params

func (*ListDeploymentsParams) SetDefaults added in v1.3.0

func (o *ListDeploymentsParams) SetDefaults()

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

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

func (*ListDeploymentsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list deployments params

func (*ListDeploymentsParams) SetTimeout

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

SetTimeout adds the timeout to the list deployments params

func (*ListDeploymentsParams) WithContext

WithContext adds the context to the list deployments params

func (*ListDeploymentsParams) WithDefaults added in v1.3.0

func (o *ListDeploymentsParams) WithDefaults() *ListDeploymentsParams

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

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

func (*ListDeploymentsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list deployments params

func (*ListDeploymentsParams) WithTimeout

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

WithTimeout adds the timeout to the list deployments params

func (*ListDeploymentsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListDeploymentsReader

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

ListDeploymentsReader is a Reader for the ListDeployments structure.

func (*ListDeploymentsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListDeploymentsUnauthorized

type ListDeploymentsUnauthorized struct {
	Payload *models.BasicFailedReply
}
ListDeploymentsUnauthorized describes a response with status code 401, with default header values.

You are not authorized to perform this action.

func NewListDeploymentsUnauthorized

func NewListDeploymentsUnauthorized() *ListDeploymentsUnauthorized

NewListDeploymentsUnauthorized creates a ListDeploymentsUnauthorized with default headers values

func (*ListDeploymentsUnauthorized) Error

func (*ListDeploymentsUnauthorized) GetPayload

type MigrateDeploymentBadRequest added in v1.1.0

type MigrateDeploymentBadRequest struct {
	Payload *models.BasicFailedReply
}
MigrateDeploymentBadRequest describes a response with status code 400, with default header values.

The deployment cannot be successfully migrated to the template with the provided id.

func NewMigrateDeploymentBadRequest added in v1.1.0

func NewMigrateDeploymentBadRequest() *MigrateDeploymentBadRequest

NewMigrateDeploymentBadRequest creates a MigrateDeploymentBadRequest with default headers values

func (*MigrateDeploymentBadRequest) Error added in v1.1.0

func (*MigrateDeploymentBadRequest) GetPayload added in v1.1.0

type MigrateDeploymentNotFound added in v1.1.0

type MigrateDeploymentNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
MigrateDeploymentNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewMigrateDeploymentNotFound added in v1.1.0

func NewMigrateDeploymentNotFound() *MigrateDeploymentNotFound

NewMigrateDeploymentNotFound creates a MigrateDeploymentNotFound with default headers values

func (*MigrateDeploymentNotFound) Error added in v1.1.0

func (o *MigrateDeploymentNotFound) Error() string

func (*MigrateDeploymentNotFound) GetPayload added in v1.1.0

type MigrateDeploymentOK added in v1.1.0

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

The request was valid and the deployment can be migrated to the template with the provided id.

func NewMigrateDeploymentOK added in v1.1.0

func NewMigrateDeploymentOK() *MigrateDeploymentOK

NewMigrateDeploymentOK creates a MigrateDeploymentOK with default headers values

func (*MigrateDeploymentOK) Error added in v1.1.0

func (o *MigrateDeploymentOK) Error() string

func (*MigrateDeploymentOK) GetPayload added in v1.1.0

type MigrateDeploymentParams added in v1.1.0

type MigrateDeploymentParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* Template.

	   The ID of the deployment template to migrate to
	*/
	Template string

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

MigrateDeploymentParams contains all the parameters to send to the API endpoint

for the migrate deployment operation.

Typically these are written to a http.Request.

func NewMigrateDeploymentParams added in v1.1.0

func NewMigrateDeploymentParams() *MigrateDeploymentParams

NewMigrateDeploymentParams creates a new MigrateDeploymentParams 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 NewMigrateDeploymentParamsWithContext added in v1.1.0

func NewMigrateDeploymentParamsWithContext(ctx context.Context) *MigrateDeploymentParams

NewMigrateDeploymentParamsWithContext creates a new MigrateDeploymentParams object with the ability to set a context for a request.

func NewMigrateDeploymentParamsWithHTTPClient added in v1.1.0

func NewMigrateDeploymentParamsWithHTTPClient(client *http.Client) *MigrateDeploymentParams

NewMigrateDeploymentParamsWithHTTPClient creates a new MigrateDeploymentParams object with the ability to set a custom HTTPClient for a request.

func NewMigrateDeploymentParamsWithTimeout added in v1.1.0

func NewMigrateDeploymentParamsWithTimeout(timeout time.Duration) *MigrateDeploymentParams

NewMigrateDeploymentParamsWithTimeout creates a new MigrateDeploymentParams object with the ability to set a timeout on a request.

func (*MigrateDeploymentParams) SetContext added in v1.1.0

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

SetContext adds the context to the migrate deployment params

func (*MigrateDeploymentParams) SetDefaults added in v1.3.0

func (o *MigrateDeploymentParams) SetDefaults()

SetDefaults hydrates default values in the migrate deployment params (not the query body).

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

func (*MigrateDeploymentParams) SetDeploymentID added in v1.1.0

func (o *MigrateDeploymentParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the migrate deployment params

func (*MigrateDeploymentParams) SetHTTPClient added in v1.1.0

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

SetHTTPClient adds the HTTPClient to the migrate deployment params

func (*MigrateDeploymentParams) SetTemplate added in v1.1.0

func (o *MigrateDeploymentParams) SetTemplate(template string)

SetTemplate adds the template to the migrate deployment params

func (*MigrateDeploymentParams) SetTimeout added in v1.1.0

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

SetTimeout adds the timeout to the migrate deployment params

func (*MigrateDeploymentParams) WithContext added in v1.1.0

WithContext adds the context to the migrate deployment params

func (*MigrateDeploymentParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the migrate deployment params (not the query body).

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

func (*MigrateDeploymentParams) WithDeploymentID added in v1.1.0

func (o *MigrateDeploymentParams) WithDeploymentID(deploymentID string) *MigrateDeploymentParams

WithDeploymentID adds the deploymentID to the migrate deployment params

func (*MigrateDeploymentParams) WithHTTPClient added in v1.1.0

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

WithHTTPClient adds the HTTPClient to the migrate deployment params

func (*MigrateDeploymentParams) WithTemplate added in v1.1.0

func (o *MigrateDeploymentParams) WithTemplate(template string) *MigrateDeploymentParams

WithTemplate adds the template to the migrate deployment params

func (*MigrateDeploymentParams) WithTimeout added in v1.1.0

WithTimeout adds the timeout to the migrate deployment params

func (*MigrateDeploymentParams) WriteToRequest added in v1.1.0

WriteToRequest writes these params to a swagger request

type MigrateDeploymentReader added in v1.1.0

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

MigrateDeploymentReader is a Reader for the MigrateDeployment structure.

func (*MigrateDeploymentReader) ReadResponse added in v1.1.0

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

ReadResponse reads a server response into the received o.

type MigrateDeploymentUnauthorized added in v1.1.0

type MigrateDeploymentUnauthorized struct {
	Payload *models.BasicFailedReply
}
MigrateDeploymentUnauthorized describes a response with status code 401, with default header values.

You are not authorized to perform this action.

func NewMigrateDeploymentUnauthorized added in v1.1.0

func NewMigrateDeploymentUnauthorized() *MigrateDeploymentUnauthorized

NewMigrateDeploymentUnauthorized creates a MigrateDeploymentUnauthorized with default headers values

func (*MigrateDeploymentUnauthorized) Error added in v1.1.0

func (*MigrateDeploymentUnauthorized) GetPayload added in v1.1.0

type ResetElasticsearchUserPasswordInternalServerError

type ResetElasticsearchUserPasswordInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ResetElasticsearchUserPasswordInternalServerError describes a response with status code 500, with default header values.

Failed to reset the 'elastic' user's password. (code: `deployments.elasticsearch.password_reset_error`)

func NewResetElasticsearchUserPasswordInternalServerError

func NewResetElasticsearchUserPasswordInternalServerError() *ResetElasticsearchUserPasswordInternalServerError

NewResetElasticsearchUserPasswordInternalServerError creates a ResetElasticsearchUserPasswordInternalServerError with default headers values

func (*ResetElasticsearchUserPasswordInternalServerError) Error

func (*ResetElasticsearchUserPasswordInternalServerError) GetPayload

type ResetElasticsearchUserPasswordNotFound

type ResetElasticsearchUserPasswordNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ResetElasticsearchUserPasswordNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewResetElasticsearchUserPasswordNotFound

func NewResetElasticsearchUserPasswordNotFound() *ResetElasticsearchUserPasswordNotFound

NewResetElasticsearchUserPasswordNotFound creates a ResetElasticsearchUserPasswordNotFound with default headers values

func (*ResetElasticsearchUserPasswordNotFound) Error

func (*ResetElasticsearchUserPasswordNotFound) GetPayload

type ResetElasticsearchUserPasswordOK

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

The password reset was out carried successfully

func NewResetElasticsearchUserPasswordOK

func NewResetElasticsearchUserPasswordOK() *ResetElasticsearchUserPasswordOK

NewResetElasticsearchUserPasswordOK creates a ResetElasticsearchUserPasswordOK with default headers values

func (*ResetElasticsearchUserPasswordOK) Error

func (*ResetElasticsearchUserPasswordOK) GetPayload

type ResetElasticsearchUserPasswordParams

type ResetElasticsearchUserPasswordParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

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

ResetElasticsearchUserPasswordParams contains all the parameters to send to the API endpoint

for the reset elasticsearch user password operation.

Typically these are written to a http.Request.

func NewResetElasticsearchUserPasswordParams

func NewResetElasticsearchUserPasswordParams() *ResetElasticsearchUserPasswordParams

NewResetElasticsearchUserPasswordParams creates a new ResetElasticsearchUserPasswordParams 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 NewResetElasticsearchUserPasswordParamsWithContext

func NewResetElasticsearchUserPasswordParamsWithContext(ctx context.Context) *ResetElasticsearchUserPasswordParams

NewResetElasticsearchUserPasswordParamsWithContext creates a new ResetElasticsearchUserPasswordParams object with the ability to set a context for a request.

func NewResetElasticsearchUserPasswordParamsWithHTTPClient

func NewResetElasticsearchUserPasswordParamsWithHTTPClient(client *http.Client) *ResetElasticsearchUserPasswordParams

NewResetElasticsearchUserPasswordParamsWithHTTPClient creates a new ResetElasticsearchUserPasswordParams object with the ability to set a custom HTTPClient for a request.

func NewResetElasticsearchUserPasswordParamsWithTimeout

func NewResetElasticsearchUserPasswordParamsWithTimeout(timeout time.Duration) *ResetElasticsearchUserPasswordParams

NewResetElasticsearchUserPasswordParamsWithTimeout creates a new ResetElasticsearchUserPasswordParams object with the ability to set a timeout on a request.

func (*ResetElasticsearchUserPasswordParams) SetContext

SetContext adds the context to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) SetDefaults added in v1.3.0

func (o *ResetElasticsearchUserPasswordParams) SetDefaults()

SetDefaults hydrates default values in the reset elasticsearch user password params (not the query body).

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

func (*ResetElasticsearchUserPasswordParams) SetDeploymentID

func (o *ResetElasticsearchUserPasswordParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) SetRefID

func (o *ResetElasticsearchUserPasswordParams) SetRefID(refID string)

SetRefID adds the refId to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) SetTimeout

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

SetTimeout adds the timeout to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) WithContext

WithContext adds the context to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the reset elasticsearch user password params (not the query body).

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

func (*ResetElasticsearchUserPasswordParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) WithRefID

WithRefID adds the refID to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) WithTimeout

WithTimeout adds the timeout to the reset elasticsearch user password params

func (*ResetElasticsearchUserPasswordParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ResetElasticsearchUserPasswordReader

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

ResetElasticsearchUserPasswordReader is a Reader for the ResetElasticsearchUserPassword structure.

func (*ResetElasticsearchUserPasswordReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ResetElasticsearchUserPasswordRetryWith

type ResetElasticsearchUserPasswordRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ResetElasticsearchUserPasswordRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewResetElasticsearchUserPasswordRetryWith

func NewResetElasticsearchUserPasswordRetryWith() *ResetElasticsearchUserPasswordRetryWith

NewResetElasticsearchUserPasswordRetryWith creates a ResetElasticsearchUserPasswordRetryWith with default headers values

func (*ResetElasticsearchUserPasswordRetryWith) Error

func (*ResetElasticsearchUserPasswordRetryWith) GetPayload

type RestartDeploymentEsResourceAccepted

type RestartDeploymentEsResourceAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
RestartDeploymentEsResourceAccepted describes a response with status code 202, with default header values.

The restart command was issued successfully.

func NewRestartDeploymentEsResourceAccepted

func NewRestartDeploymentEsResourceAccepted() *RestartDeploymentEsResourceAccepted

NewRestartDeploymentEsResourceAccepted creates a RestartDeploymentEsResourceAccepted with default headers values

func (*RestartDeploymentEsResourceAccepted) Error

func (*RestartDeploymentEsResourceAccepted) GetPayload

type RestartDeploymentEsResourceInternalServerError

type RestartDeploymentEsResourceInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestartDeploymentEsResourceInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewRestartDeploymentEsResourceInternalServerError

func NewRestartDeploymentEsResourceInternalServerError() *RestartDeploymentEsResourceInternalServerError

NewRestartDeploymentEsResourceInternalServerError creates a RestartDeploymentEsResourceInternalServerError with default headers values

func (*RestartDeploymentEsResourceInternalServerError) Error

func (*RestartDeploymentEsResourceInternalServerError) GetPayload

type RestartDeploymentEsResourceNotFound

type RestartDeploymentEsResourceNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestartDeploymentEsResourceNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewRestartDeploymentEsResourceNotFound

func NewRestartDeploymentEsResourceNotFound() *RestartDeploymentEsResourceNotFound

NewRestartDeploymentEsResourceNotFound creates a RestartDeploymentEsResourceNotFound with default headers values

func (*RestartDeploymentEsResourceNotFound) Error

func (*RestartDeploymentEsResourceNotFound) GetPayload

type RestartDeploymentEsResourceParams

type RestartDeploymentEsResourceParams struct {

	/* CancelPending.

	   If true, cancels any pending plans before restarting. If false and there are pending plans, returns an error.
	*/
	CancelPending *bool

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* GroupAttribute.

	   Indicates the property or properties used to divide the list of instances to restart in groups. Valid options are: '\_\_all\_\_' (restart all at once), '\_\_zone\_\_' by logical zone, '\_\_name\_\_' one instance at a time, or a comma-separated list of attributes of the instances

	   Default: "__zone__"
	*/
	GroupAttribute *string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* RestoreSnapshot.

	   When set to true and restoring from shutdown, then will restore the cluster from the last snapshot (if available).

	   Default: true
	*/
	RestoreSnapshot *bool

	/* ShardInitWaitTime.

	   The time, in seconds, to wait for shards that show no progress of initializing, before rolling the next group (default: 10 minutes)

	   Default: 600
	*/
	ShardInitWaitTime *int64

	/* SkipSnapshot.

	   If true, will not take a snapshot of the cluster before restarting.

	   Default: true
	*/
	SkipSnapshot *bool

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

RestartDeploymentEsResourceParams contains all the parameters to send to the API endpoint

for the restart deployment es resource operation.

Typically these are written to a http.Request.

func NewRestartDeploymentEsResourceParams

func NewRestartDeploymentEsResourceParams() *RestartDeploymentEsResourceParams

NewRestartDeploymentEsResourceParams creates a new RestartDeploymentEsResourceParams 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 NewRestartDeploymentEsResourceParamsWithContext

func NewRestartDeploymentEsResourceParamsWithContext(ctx context.Context) *RestartDeploymentEsResourceParams

NewRestartDeploymentEsResourceParamsWithContext creates a new RestartDeploymentEsResourceParams object with the ability to set a context for a request.

func NewRestartDeploymentEsResourceParamsWithHTTPClient

func NewRestartDeploymentEsResourceParamsWithHTTPClient(client *http.Client) *RestartDeploymentEsResourceParams

NewRestartDeploymentEsResourceParamsWithHTTPClient creates a new RestartDeploymentEsResourceParams object with the ability to set a custom HTTPClient for a request.

func NewRestartDeploymentEsResourceParamsWithTimeout

func NewRestartDeploymentEsResourceParamsWithTimeout(timeout time.Duration) *RestartDeploymentEsResourceParams

NewRestartDeploymentEsResourceParamsWithTimeout creates a new RestartDeploymentEsResourceParams object with the ability to set a timeout on a request.

func (*RestartDeploymentEsResourceParams) SetCancelPending

func (o *RestartDeploymentEsResourceParams) SetCancelPending(cancelPending *bool)

SetCancelPending adds the cancelPending to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetContext

SetContext adds the context to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetDefaults added in v1.3.0

func (o *RestartDeploymentEsResourceParams) SetDefaults()

SetDefaults hydrates default values in the restart deployment es resource params (not the query body).

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

func (*RestartDeploymentEsResourceParams) SetDeploymentID

func (o *RestartDeploymentEsResourceParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetGroupAttribute

func (o *RestartDeploymentEsResourceParams) SetGroupAttribute(groupAttribute *string)

SetGroupAttribute adds the groupAttribute to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetRefID

func (o *RestartDeploymentEsResourceParams) SetRefID(refID string)

SetRefID adds the refId to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetRestoreSnapshot

func (o *RestartDeploymentEsResourceParams) SetRestoreSnapshot(restoreSnapshot *bool)

SetRestoreSnapshot adds the restoreSnapshot to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetShardInitWaitTime

func (o *RestartDeploymentEsResourceParams) SetShardInitWaitTime(shardInitWaitTime *int64)

SetShardInitWaitTime adds the shardInitWaitTime to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetSkipSnapshot

func (o *RestartDeploymentEsResourceParams) SetSkipSnapshot(skipSnapshot *bool)

SetSkipSnapshot adds the skipSnapshot to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) SetTimeout

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

SetTimeout adds the timeout to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithCancelPending

func (o *RestartDeploymentEsResourceParams) WithCancelPending(cancelPending *bool) *RestartDeploymentEsResourceParams

WithCancelPending adds the cancelPending to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithContext

WithContext adds the context to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the restart deployment es resource params (not the query body).

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

func (*RestartDeploymentEsResourceParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithGroupAttribute

func (o *RestartDeploymentEsResourceParams) WithGroupAttribute(groupAttribute *string) *RestartDeploymentEsResourceParams

WithGroupAttribute adds the groupAttribute to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithRefID

WithRefID adds the refID to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithRestoreSnapshot

func (o *RestartDeploymentEsResourceParams) WithRestoreSnapshot(restoreSnapshot *bool) *RestartDeploymentEsResourceParams

WithRestoreSnapshot adds the restoreSnapshot to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithShardInitWaitTime

func (o *RestartDeploymentEsResourceParams) WithShardInitWaitTime(shardInitWaitTime *int64) *RestartDeploymentEsResourceParams

WithShardInitWaitTime adds the shardInitWaitTime to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithSkipSnapshot

func (o *RestartDeploymentEsResourceParams) WithSkipSnapshot(skipSnapshot *bool) *RestartDeploymentEsResourceParams

WithSkipSnapshot adds the skipSnapshot to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WithTimeout

WithTimeout adds the timeout to the restart deployment es resource params

func (*RestartDeploymentEsResourceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RestartDeploymentEsResourceReader

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

RestartDeploymentEsResourceReader is a Reader for the RestartDeploymentEsResource structure.

func (*RestartDeploymentEsResourceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RestartDeploymentEsResourceRetryWith

type RestartDeploymentEsResourceRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestartDeploymentEsResourceRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewRestartDeploymentEsResourceRetryWith

func NewRestartDeploymentEsResourceRetryWith() *RestartDeploymentEsResourceRetryWith

NewRestartDeploymentEsResourceRetryWith creates a RestartDeploymentEsResourceRetryWith with default headers values

func (*RestartDeploymentEsResourceRetryWith) Error

func (*RestartDeploymentEsResourceRetryWith) GetPayload

type RestartDeploymentEsResourceUnprocessableEntity

type RestartDeploymentEsResourceUnprocessableEntity struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestartDeploymentEsResourceUnprocessableEntity describes a response with status code 422, with default header values.

The command sent to a Resource found the Resource in an illegal state, the error message gives more details. (code: `deployments.deployment_resource_plan_change_error`)

func NewRestartDeploymentEsResourceUnprocessableEntity

func NewRestartDeploymentEsResourceUnprocessableEntity() *RestartDeploymentEsResourceUnprocessableEntity

NewRestartDeploymentEsResourceUnprocessableEntity creates a RestartDeploymentEsResourceUnprocessableEntity with default headers values

func (*RestartDeploymentEsResourceUnprocessableEntity) Error

func (*RestartDeploymentEsResourceUnprocessableEntity) GetPayload

type RestartDeploymentStatelessResourceAccepted

type RestartDeploymentStatelessResourceAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
RestartDeploymentStatelessResourceAccepted describes a response with status code 202, with default header values.

The restart command was issued successfully

func NewRestartDeploymentStatelessResourceAccepted

func NewRestartDeploymentStatelessResourceAccepted() *RestartDeploymentStatelessResourceAccepted

NewRestartDeploymentStatelessResourceAccepted creates a RestartDeploymentStatelessResourceAccepted with default headers values

func (*RestartDeploymentStatelessResourceAccepted) Error

func (*RestartDeploymentStatelessResourceAccepted) GetPayload

type RestartDeploymentStatelessResourceInternalServerError

type RestartDeploymentStatelessResourceInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestartDeploymentStatelessResourceInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewRestartDeploymentStatelessResourceInternalServerError

func NewRestartDeploymentStatelessResourceInternalServerError() *RestartDeploymentStatelessResourceInternalServerError

NewRestartDeploymentStatelessResourceInternalServerError creates a RestartDeploymentStatelessResourceInternalServerError with default headers values

func (*RestartDeploymentStatelessResourceInternalServerError) Error

func (*RestartDeploymentStatelessResourceInternalServerError) GetPayload

type RestartDeploymentStatelessResourceNotFound

type RestartDeploymentStatelessResourceNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestartDeploymentStatelessResourceNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewRestartDeploymentStatelessResourceNotFound

func NewRestartDeploymentStatelessResourceNotFound() *RestartDeploymentStatelessResourceNotFound

NewRestartDeploymentStatelessResourceNotFound creates a RestartDeploymentStatelessResourceNotFound with default headers values

func (*RestartDeploymentStatelessResourceNotFound) Error

func (*RestartDeploymentStatelessResourceNotFound) GetPayload

type RestartDeploymentStatelessResourceParams

type RestartDeploymentStatelessResourceParams struct {

	/* CancelPending.

	   If true, cancels any pending plans before restarting. If false and there are pending plans, returns an error.
	*/
	CancelPending *bool

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* StatelessResourceKind.

	   The kind of stateless resource
	*/
	StatelessResourceKind string

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

RestartDeploymentStatelessResourceParams contains all the parameters to send to the API endpoint

for the restart deployment stateless resource operation.

Typically these are written to a http.Request.

func NewRestartDeploymentStatelessResourceParams

func NewRestartDeploymentStatelessResourceParams() *RestartDeploymentStatelessResourceParams

NewRestartDeploymentStatelessResourceParams creates a new RestartDeploymentStatelessResourceParams 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 NewRestartDeploymentStatelessResourceParamsWithContext

func NewRestartDeploymentStatelessResourceParamsWithContext(ctx context.Context) *RestartDeploymentStatelessResourceParams

NewRestartDeploymentStatelessResourceParamsWithContext creates a new RestartDeploymentStatelessResourceParams object with the ability to set a context for a request.

func NewRestartDeploymentStatelessResourceParamsWithHTTPClient

func NewRestartDeploymentStatelessResourceParamsWithHTTPClient(client *http.Client) *RestartDeploymentStatelessResourceParams

NewRestartDeploymentStatelessResourceParamsWithHTTPClient creates a new RestartDeploymentStatelessResourceParams object with the ability to set a custom HTTPClient for a request.

func NewRestartDeploymentStatelessResourceParamsWithTimeout

func NewRestartDeploymentStatelessResourceParamsWithTimeout(timeout time.Duration) *RestartDeploymentStatelessResourceParams

NewRestartDeploymentStatelessResourceParamsWithTimeout creates a new RestartDeploymentStatelessResourceParams object with the ability to set a timeout on a request.

func (*RestartDeploymentStatelessResourceParams) SetCancelPending

func (o *RestartDeploymentStatelessResourceParams) SetCancelPending(cancelPending *bool)

SetCancelPending adds the cancelPending to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) SetContext

SetContext adds the context to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the restart deployment stateless resource params (not the query body).

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

func (*RestartDeploymentStatelessResourceParams) SetDeploymentID

func (o *RestartDeploymentStatelessResourceParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) SetRefID

SetRefID adds the refId to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) SetStatelessResourceKind

func (o *RestartDeploymentStatelessResourceParams) SetStatelessResourceKind(statelessResourceKind string)

SetStatelessResourceKind adds the statelessResourceKind to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) SetTimeout

SetTimeout adds the timeout to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) WithCancelPending

WithCancelPending adds the cancelPending to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) WithContext

WithContext adds the context to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the restart deployment stateless resource params (not the query body).

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

func (*RestartDeploymentStatelessResourceParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) WithRefID

WithRefID adds the refID to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) WithStatelessResourceKind

func (o *RestartDeploymentStatelessResourceParams) WithStatelessResourceKind(statelessResourceKind string) *RestartDeploymentStatelessResourceParams

WithStatelessResourceKind adds the statelessResourceKind to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) WithTimeout

WithTimeout adds the timeout to the restart deployment stateless resource params

func (*RestartDeploymentStatelessResourceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RestartDeploymentStatelessResourceReader

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

RestartDeploymentStatelessResourceReader is a Reader for the RestartDeploymentStatelessResource structure.

func (*RestartDeploymentStatelessResourceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RestartDeploymentStatelessResourceRetryWith

type RestartDeploymentStatelessResourceRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestartDeploymentStatelessResourceRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewRestartDeploymentStatelessResourceRetryWith

func NewRestartDeploymentStatelessResourceRetryWith() *RestartDeploymentStatelessResourceRetryWith

NewRestartDeploymentStatelessResourceRetryWith creates a RestartDeploymentStatelessResourceRetryWith with default headers values

func (*RestartDeploymentStatelessResourceRetryWith) Error

func (*RestartDeploymentStatelessResourceRetryWith) GetPayload

type RestartDeploymentStatelessResourceUnprocessableEntity

type RestartDeploymentStatelessResourceUnprocessableEntity struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestartDeploymentStatelessResourceUnprocessableEntity describes a response with status code 422, with default header values.

The command sent to a Resource found the Resource in an illegal state, the error message gives more details. (code: `deployments.deployment_resource_plan_change_error`)

func NewRestartDeploymentStatelessResourceUnprocessableEntity

func NewRestartDeploymentStatelessResourceUnprocessableEntity() *RestartDeploymentStatelessResourceUnprocessableEntity

NewRestartDeploymentStatelessResourceUnprocessableEntity creates a RestartDeploymentStatelessResourceUnprocessableEntity with default headers values

func (*RestartDeploymentStatelessResourceUnprocessableEntity) Error

func (*RestartDeploymentStatelessResourceUnprocessableEntity) GetPayload

type RestoreDeploymentBadRequest

type RestoreDeploymentBadRequest struct {
	Payload *models.BasicFailedReply
}
RestoreDeploymentBadRequest describes a response with status code 400, with default header values.

There are Elasticsearch resources in the deployment which are not shut down.

func NewRestoreDeploymentBadRequest

func NewRestoreDeploymentBadRequest() *RestoreDeploymentBadRequest

NewRestoreDeploymentBadRequest creates a RestoreDeploymentBadRequest with default headers values

func (*RestoreDeploymentBadRequest) Error

func (*RestoreDeploymentBadRequest) GetPayload

type RestoreDeploymentNotFound

type RestoreDeploymentNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestoreDeploymentNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewRestoreDeploymentNotFound

func NewRestoreDeploymentNotFound() *RestoreDeploymentNotFound

NewRestoreDeploymentNotFound creates a RestoreDeploymentNotFound with default headers values

func (*RestoreDeploymentNotFound) Error

func (o *RestoreDeploymentNotFound) Error() string

func (*RestoreDeploymentNotFound) GetPayload

type RestoreDeploymentOK

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

The request was valid and the resources of the deployment were restored.

func NewRestoreDeploymentOK

func NewRestoreDeploymentOK() *RestoreDeploymentOK

NewRestoreDeploymentOK creates a RestoreDeploymentOK with default headers values

func (*RestoreDeploymentOK) Error

func (o *RestoreDeploymentOK) Error() string

func (*RestoreDeploymentOK) GetPayload

type RestoreDeploymentParams

type RestoreDeploymentParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RestoreSnapshot.

	   Whether or not to restore a snapshot for those resources that allow it.
	*/
	RestoreSnapshot *bool

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

RestoreDeploymentParams contains all the parameters to send to the API endpoint

for the restore deployment operation.

Typically these are written to a http.Request.

func NewRestoreDeploymentParams

func NewRestoreDeploymentParams() *RestoreDeploymentParams

NewRestoreDeploymentParams creates a new RestoreDeploymentParams 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 NewRestoreDeploymentParamsWithContext

func NewRestoreDeploymentParamsWithContext(ctx context.Context) *RestoreDeploymentParams

NewRestoreDeploymentParamsWithContext creates a new RestoreDeploymentParams object with the ability to set a context for a request.

func NewRestoreDeploymentParamsWithHTTPClient

func NewRestoreDeploymentParamsWithHTTPClient(client *http.Client) *RestoreDeploymentParams

NewRestoreDeploymentParamsWithHTTPClient creates a new RestoreDeploymentParams object with the ability to set a custom HTTPClient for a request.

func NewRestoreDeploymentParamsWithTimeout

func NewRestoreDeploymentParamsWithTimeout(timeout time.Duration) *RestoreDeploymentParams

NewRestoreDeploymentParamsWithTimeout creates a new RestoreDeploymentParams object with the ability to set a timeout on a request.

func (*RestoreDeploymentParams) SetContext

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

SetContext adds the context to the restore deployment params

func (*RestoreDeploymentParams) SetDefaults added in v1.3.0

func (o *RestoreDeploymentParams) SetDefaults()

SetDefaults hydrates default values in the restore deployment params (not the query body).

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

func (*RestoreDeploymentParams) SetDeploymentID

func (o *RestoreDeploymentParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the restore deployment params

func (*RestoreDeploymentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the restore deployment params

func (*RestoreDeploymentParams) SetRestoreSnapshot

func (o *RestoreDeploymentParams) SetRestoreSnapshot(restoreSnapshot *bool)

SetRestoreSnapshot adds the restoreSnapshot to the restore deployment params

func (*RestoreDeploymentParams) SetTimeout

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

SetTimeout adds the timeout to the restore deployment params

func (*RestoreDeploymentParams) WithContext

WithContext adds the context to the restore deployment params

func (*RestoreDeploymentParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the restore deployment params (not the query body).

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

func (*RestoreDeploymentParams) WithDeploymentID

func (o *RestoreDeploymentParams) WithDeploymentID(deploymentID string) *RestoreDeploymentParams

WithDeploymentID adds the deploymentID to the restore deployment params

func (*RestoreDeploymentParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the restore deployment params

func (*RestoreDeploymentParams) WithRestoreSnapshot

func (o *RestoreDeploymentParams) WithRestoreSnapshot(restoreSnapshot *bool) *RestoreDeploymentParams

WithRestoreSnapshot adds the restoreSnapshot to the restore deployment params

func (*RestoreDeploymentParams) WithTimeout

WithTimeout adds the timeout to the restore deployment params

func (*RestoreDeploymentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RestoreDeploymentReader

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

RestoreDeploymentReader is a Reader for the RestoreDeployment structure.

func (*RestoreDeploymentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RestoreDeploymentResourceBadRequest

type RestoreDeploymentResourceBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestoreDeploymentResourceBadRequest describes a response with status code 400, with default header values.

* The Resource does not have a pending plan. (code: `deployments.resource_does_not_have_a_pending_plan`)

* The resource is not shut down. (code: `deployments.resource_not_shutdown`)

func NewRestoreDeploymentResourceBadRequest

func NewRestoreDeploymentResourceBadRequest() *RestoreDeploymentResourceBadRequest

NewRestoreDeploymentResourceBadRequest creates a RestoreDeploymentResourceBadRequest with default headers values

func (*RestoreDeploymentResourceBadRequest) Error

func (*RestoreDeploymentResourceBadRequest) GetPayload

type RestoreDeploymentResourceNotFound

type RestoreDeploymentResourceNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestoreDeploymentResourceNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewRestoreDeploymentResourceNotFound

func NewRestoreDeploymentResourceNotFound() *RestoreDeploymentResourceNotFound

NewRestoreDeploymentResourceNotFound creates a RestoreDeploymentResourceNotFound with default headers values

func (*RestoreDeploymentResourceNotFound) Error

func (*RestoreDeploymentResourceNotFound) GetPayload

type RestoreDeploymentResourceOK

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

Standard Deployment Resource Crud Response

func NewRestoreDeploymentResourceOK

func NewRestoreDeploymentResourceOK() *RestoreDeploymentResourceOK

NewRestoreDeploymentResourceOK creates a RestoreDeploymentResourceOK with default headers values

func (*RestoreDeploymentResourceOK) Error

func (*RestoreDeploymentResourceOK) GetPayload

type RestoreDeploymentResourceParams

type RestoreDeploymentResourceParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource
	*/
	ResourceKind string

	/* RestoreSnapshot.

	   Whether or not to restore a snapshot for those resources that allow it.
	*/
	RestoreSnapshot *bool

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

RestoreDeploymentResourceParams contains all the parameters to send to the API endpoint

for the restore deployment resource operation.

Typically these are written to a http.Request.

func NewRestoreDeploymentResourceParams

func NewRestoreDeploymentResourceParams() *RestoreDeploymentResourceParams

NewRestoreDeploymentResourceParams creates a new RestoreDeploymentResourceParams 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 NewRestoreDeploymentResourceParamsWithContext

func NewRestoreDeploymentResourceParamsWithContext(ctx context.Context) *RestoreDeploymentResourceParams

NewRestoreDeploymentResourceParamsWithContext creates a new RestoreDeploymentResourceParams object with the ability to set a context for a request.

func NewRestoreDeploymentResourceParamsWithHTTPClient

func NewRestoreDeploymentResourceParamsWithHTTPClient(client *http.Client) *RestoreDeploymentResourceParams

NewRestoreDeploymentResourceParamsWithHTTPClient creates a new RestoreDeploymentResourceParams object with the ability to set a custom HTTPClient for a request.

func NewRestoreDeploymentResourceParamsWithTimeout

func NewRestoreDeploymentResourceParamsWithTimeout(timeout time.Duration) *RestoreDeploymentResourceParams

NewRestoreDeploymentResourceParamsWithTimeout creates a new RestoreDeploymentResourceParams object with the ability to set a timeout on a request.

func (*RestoreDeploymentResourceParams) SetContext

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

SetContext adds the context to the restore deployment resource params

func (*RestoreDeploymentResourceParams) SetDefaults added in v1.3.0

func (o *RestoreDeploymentResourceParams) SetDefaults()

SetDefaults hydrates default values in the restore deployment resource params (not the query body).

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

func (*RestoreDeploymentResourceParams) SetDeploymentID

func (o *RestoreDeploymentResourceParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the restore deployment resource params

func (*RestoreDeploymentResourceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the restore deployment resource params

func (*RestoreDeploymentResourceParams) SetRefID

func (o *RestoreDeploymentResourceParams) SetRefID(refID string)

SetRefID adds the refId to the restore deployment resource params

func (*RestoreDeploymentResourceParams) SetResourceKind

func (o *RestoreDeploymentResourceParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the restore deployment resource params

func (*RestoreDeploymentResourceParams) SetRestoreSnapshot

func (o *RestoreDeploymentResourceParams) SetRestoreSnapshot(restoreSnapshot *bool)

SetRestoreSnapshot adds the restoreSnapshot to the restore deployment resource params

func (*RestoreDeploymentResourceParams) SetTimeout

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

SetTimeout adds the timeout to the restore deployment resource params

func (*RestoreDeploymentResourceParams) WithContext

WithContext adds the context to the restore deployment resource params

func (*RestoreDeploymentResourceParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the restore deployment resource params (not the query body).

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

func (*RestoreDeploymentResourceParams) WithDeploymentID

func (o *RestoreDeploymentResourceParams) WithDeploymentID(deploymentID string) *RestoreDeploymentResourceParams

WithDeploymentID adds the deploymentID to the restore deployment resource params

func (*RestoreDeploymentResourceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the restore deployment resource params

func (*RestoreDeploymentResourceParams) WithRefID

WithRefID adds the refID to the restore deployment resource params

func (*RestoreDeploymentResourceParams) WithResourceKind

func (o *RestoreDeploymentResourceParams) WithResourceKind(resourceKind string) *RestoreDeploymentResourceParams

WithResourceKind adds the resourceKind to the restore deployment resource params

func (*RestoreDeploymentResourceParams) WithRestoreSnapshot

func (o *RestoreDeploymentResourceParams) WithRestoreSnapshot(restoreSnapshot *bool) *RestoreDeploymentResourceParams

WithRestoreSnapshot adds the restoreSnapshot to the restore deployment resource params

func (*RestoreDeploymentResourceParams) WithTimeout

WithTimeout adds the timeout to the restore deployment resource params

func (*RestoreDeploymentResourceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RestoreDeploymentResourceReader

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

RestoreDeploymentResourceReader is a Reader for the RestoreDeploymentResource structure.

func (*RestoreDeploymentResourceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RestoreDeploymentResourceRetryWith

type RestoreDeploymentResourceRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
RestoreDeploymentResourceRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewRestoreDeploymentResourceRetryWith

func NewRestoreDeploymentResourceRetryWith() *RestoreDeploymentResourceRetryWith

NewRestoreDeploymentResourceRetryWith creates a RestoreDeploymentResourceRetryWith with default headers values

func (*RestoreDeploymentResourceRetryWith) Error

func (*RestoreDeploymentResourceRetryWith) GetPayload

type RestoreDeploymentUnauthorized

type RestoreDeploymentUnauthorized struct {
	Payload *models.BasicFailedReply
}
RestoreDeploymentUnauthorized describes a response with status code 401, with default header values.

You are not authorized to perform this action.

func NewRestoreDeploymentUnauthorized

func NewRestoreDeploymentUnauthorized() *RestoreDeploymentUnauthorized

NewRestoreDeploymentUnauthorized creates a RestoreDeploymentUnauthorized with default headers values

func (*RestoreDeploymentUnauthorized) Error

func (*RestoreDeploymentUnauthorized) GetPayload

type ResyncDeploymentInternalServerError

type ResyncDeploymentInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ResyncDeploymentInternalServerError describes a response with status code 500, with default header values.

The deployment resync operation failed for deployment {deployment_id}. (code: `deployments.resync_failed`)

func NewResyncDeploymentInternalServerError

func NewResyncDeploymentInternalServerError() *ResyncDeploymentInternalServerError

NewResyncDeploymentInternalServerError creates a ResyncDeploymentInternalServerError with default headers values

func (*ResyncDeploymentInternalServerError) Error

func (*ResyncDeploymentInternalServerError) GetPayload

type ResyncDeploymentOK

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

The deployment resync operation executed successfully.

func NewResyncDeploymentOK

func NewResyncDeploymentOK() *ResyncDeploymentOK

NewResyncDeploymentOK creates a ResyncDeploymentOK with default headers values

func (*ResyncDeploymentOK) Error

func (o *ResyncDeploymentOK) Error() string

func (*ResyncDeploymentOK) GetPayload

type ResyncDeploymentParams

type ResyncDeploymentParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

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

ResyncDeploymentParams contains all the parameters to send to the API endpoint

for the resync deployment operation.

Typically these are written to a http.Request.

func NewResyncDeploymentParams

func NewResyncDeploymentParams() *ResyncDeploymentParams

NewResyncDeploymentParams creates a new ResyncDeploymentParams 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 NewResyncDeploymentParamsWithContext

func NewResyncDeploymentParamsWithContext(ctx context.Context) *ResyncDeploymentParams

NewResyncDeploymentParamsWithContext creates a new ResyncDeploymentParams object with the ability to set a context for a request.

func NewResyncDeploymentParamsWithHTTPClient

func NewResyncDeploymentParamsWithHTTPClient(client *http.Client) *ResyncDeploymentParams

NewResyncDeploymentParamsWithHTTPClient creates a new ResyncDeploymentParams object with the ability to set a custom HTTPClient for a request.

func NewResyncDeploymentParamsWithTimeout

func NewResyncDeploymentParamsWithTimeout(timeout time.Duration) *ResyncDeploymentParams

NewResyncDeploymentParamsWithTimeout creates a new ResyncDeploymentParams object with the ability to set a timeout on a request.

func (*ResyncDeploymentParams) SetContext

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

SetContext adds the context to the resync deployment params

func (*ResyncDeploymentParams) SetDefaults added in v1.3.0

func (o *ResyncDeploymentParams) SetDefaults()

SetDefaults hydrates default values in the resync deployment params (not the query body).

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

func (*ResyncDeploymentParams) SetDeploymentID

func (o *ResyncDeploymentParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the resync deployment params

func (*ResyncDeploymentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the resync deployment params

func (*ResyncDeploymentParams) SetTimeout

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

SetTimeout adds the timeout to the resync deployment params

func (*ResyncDeploymentParams) WithContext

WithContext adds the context to the resync deployment params

func (*ResyncDeploymentParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the resync deployment params (not the query body).

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

func (*ResyncDeploymentParams) WithDeploymentID

func (o *ResyncDeploymentParams) WithDeploymentID(deploymentID string) *ResyncDeploymentParams

WithDeploymentID adds the deploymentID to the resync deployment params

func (*ResyncDeploymentParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the resync deployment params

func (*ResyncDeploymentParams) WithTimeout

WithTimeout adds the timeout to the resync deployment params

func (*ResyncDeploymentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ResyncDeploymentReader

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

ResyncDeploymentReader is a Reader for the ResyncDeployment structure.

func (*ResyncDeploymentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ResyncDeploymentRetryWith

type ResyncDeploymentRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ResyncDeploymentRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewResyncDeploymentRetryWith

func NewResyncDeploymentRetryWith() *ResyncDeploymentRetryWith

NewResyncDeploymentRetryWith creates a ResyncDeploymentRetryWith with default headers values

func (*ResyncDeploymentRetryWith) Error

func (o *ResyncDeploymentRetryWith) Error() string

func (*ResyncDeploymentRetryWith) GetPayload

type ResyncDeploymentsInternalServerError

type ResyncDeploymentsInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ResyncDeploymentsInternalServerError describes a response with status code 500, with default header values.

The deployments resync operation failed. (code: `deployments.resync_failed`)

func NewResyncDeploymentsInternalServerError

func NewResyncDeploymentsInternalServerError() *ResyncDeploymentsInternalServerError

NewResyncDeploymentsInternalServerError creates a ResyncDeploymentsInternalServerError with default headers values

func (*ResyncDeploymentsInternalServerError) Error

func (*ResyncDeploymentsInternalServerError) GetPayload

type ResyncDeploymentsOK

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

The deployments resync operation executed successfully.

func NewResyncDeploymentsOK

func NewResyncDeploymentsOK() *ResyncDeploymentsOK

NewResyncDeploymentsOK creates a ResyncDeploymentsOK with default headers values

func (*ResyncDeploymentsOK) Error

func (o *ResyncDeploymentsOK) Error() string

func (*ResyncDeploymentsOK) GetPayload

type ResyncDeploymentsParams

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

ResyncDeploymentsParams contains all the parameters to send to the API endpoint

for the resync deployments operation.

Typically these are written to a http.Request.

func NewResyncDeploymentsParams

func NewResyncDeploymentsParams() *ResyncDeploymentsParams

NewResyncDeploymentsParams creates a new ResyncDeploymentsParams 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 NewResyncDeploymentsParamsWithContext

func NewResyncDeploymentsParamsWithContext(ctx context.Context) *ResyncDeploymentsParams

NewResyncDeploymentsParamsWithContext creates a new ResyncDeploymentsParams object with the ability to set a context for a request.

func NewResyncDeploymentsParamsWithHTTPClient

func NewResyncDeploymentsParamsWithHTTPClient(client *http.Client) *ResyncDeploymentsParams

NewResyncDeploymentsParamsWithHTTPClient creates a new ResyncDeploymentsParams object with the ability to set a custom HTTPClient for a request.

func NewResyncDeploymentsParamsWithTimeout

func NewResyncDeploymentsParamsWithTimeout(timeout time.Duration) *ResyncDeploymentsParams

NewResyncDeploymentsParamsWithTimeout creates a new ResyncDeploymentsParams object with the ability to set a timeout on a request.

func (*ResyncDeploymentsParams) SetContext

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

SetContext adds the context to the resync deployments params

func (*ResyncDeploymentsParams) SetDefaults added in v1.3.0

func (o *ResyncDeploymentsParams) SetDefaults()

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

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

func (*ResyncDeploymentsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the resync deployments params

func (*ResyncDeploymentsParams) SetTimeout

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

SetTimeout adds the timeout to the resync deployments params

func (*ResyncDeploymentsParams) WithContext

WithContext adds the context to the resync deployments params

func (*ResyncDeploymentsParams) WithDefaults added in v1.3.0

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

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

func (*ResyncDeploymentsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the resync deployments params

func (*ResyncDeploymentsParams) WithTimeout

WithTimeout adds the timeout to the resync deployments params

func (*ResyncDeploymentsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ResyncDeploymentsReader

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

ResyncDeploymentsReader is a Reader for the ResyncDeployments structure.

func (*ResyncDeploymentsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ResyncDeploymentsRetryWith

type ResyncDeploymentsRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ResyncDeploymentsRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewResyncDeploymentsRetryWith

func NewResyncDeploymentsRetryWith() *ResyncDeploymentsRetryWith

NewResyncDeploymentsRetryWith creates a ResyncDeploymentsRetryWith with default headers values

func (*ResyncDeploymentsRetryWith) Error

func (*ResyncDeploymentsRetryWith) GetPayload

type SearchDeploymentsOK

type SearchDeploymentsOK struct {

	/* The date-time when the resource was created (ISO format relative to UTC)
	 */
	XCloudResourceCreated string

	/* The date-time when the resource was last modified (ISO format relative to UTC)
	 */
	XCloudResourceLastModified string

	/* The resource version, which is used to avoid update conflicts with concurrent operations
	 */
	XCloudResourceVersion string

	Payload *models.DeploymentsSearchResponse
}
SearchDeploymentsOK describes a response with status code 200, with default header values.

The list of deployments that match the specified query and belong to the authenticated user.

func NewSearchDeploymentsOK

func NewSearchDeploymentsOK() *SearchDeploymentsOK

NewSearchDeploymentsOK creates a SearchDeploymentsOK with default headers values

func (*SearchDeploymentsOK) Error

func (o *SearchDeploymentsOK) Error() string

func (*SearchDeploymentsOK) GetPayload

type SearchDeploymentsParams

type SearchDeploymentsParams struct {

	/* Body.

	   (Optional) The search query to run. When not specified, all of the deployments are matched.
	*/
	Body *models.SearchRequest

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

SearchDeploymentsParams contains all the parameters to send to the API endpoint

for the search deployments operation.

Typically these are written to a http.Request.

func NewSearchDeploymentsParams

func NewSearchDeploymentsParams() *SearchDeploymentsParams

NewSearchDeploymentsParams creates a new SearchDeploymentsParams 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 NewSearchDeploymentsParamsWithContext

func NewSearchDeploymentsParamsWithContext(ctx context.Context) *SearchDeploymentsParams

NewSearchDeploymentsParamsWithContext creates a new SearchDeploymentsParams object with the ability to set a context for a request.

func NewSearchDeploymentsParamsWithHTTPClient

func NewSearchDeploymentsParamsWithHTTPClient(client *http.Client) *SearchDeploymentsParams

NewSearchDeploymentsParamsWithHTTPClient creates a new SearchDeploymentsParams object with the ability to set a custom HTTPClient for a request.

func NewSearchDeploymentsParamsWithTimeout

func NewSearchDeploymentsParamsWithTimeout(timeout time.Duration) *SearchDeploymentsParams

NewSearchDeploymentsParamsWithTimeout creates a new SearchDeploymentsParams object with the ability to set a timeout on a request.

func (*SearchDeploymentsParams) SetBody

func (o *SearchDeploymentsParams) SetBody(body *models.SearchRequest)

SetBody adds the body to the search deployments params

func (*SearchDeploymentsParams) SetContext

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

SetContext adds the context to the search deployments params

func (*SearchDeploymentsParams) SetDefaults added in v1.3.0

func (o *SearchDeploymentsParams) SetDefaults()

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

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

func (*SearchDeploymentsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the search deployments params

func (*SearchDeploymentsParams) SetTimeout

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

SetTimeout adds the timeout to the search deployments params

func (*SearchDeploymentsParams) WithBody

WithBody adds the body to the search deployments params

func (*SearchDeploymentsParams) WithContext

WithContext adds the context to the search deployments params

func (*SearchDeploymentsParams) WithDefaults added in v1.3.0

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

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

func (*SearchDeploymentsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the search deployments params

func (*SearchDeploymentsParams) WithTimeout

WithTimeout adds the timeout to the search deployments params

func (*SearchDeploymentsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SearchDeploymentsReader

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

SearchDeploymentsReader is a Reader for the SearchDeployments structure.

func (*SearchDeploymentsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SearchEligibleRemoteClustersBadRequest added in v1.2.0

type SearchEligibleRemoteClustersBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SearchEligibleRemoteClustersBadRequest describes a response with status code 400, with default header values.

The provided version is invalid. (code: `stackpack.invalid_version`)

func NewSearchEligibleRemoteClustersBadRequest added in v1.2.0

func NewSearchEligibleRemoteClustersBadRequest() *SearchEligibleRemoteClustersBadRequest

NewSearchEligibleRemoteClustersBadRequest creates a SearchEligibleRemoteClustersBadRequest with default headers values

func (*SearchEligibleRemoteClustersBadRequest) Error added in v1.2.0

func (*SearchEligibleRemoteClustersBadRequest) GetPayload added in v1.2.0

type SearchEligibleRemoteClustersOK added in v1.2.0

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

List of deployments which contains eligible remote clusters for a specific version

func NewSearchEligibleRemoteClustersOK added in v1.2.0

func NewSearchEligibleRemoteClustersOK() *SearchEligibleRemoteClustersOK

NewSearchEligibleRemoteClustersOK creates a SearchEligibleRemoteClustersOK with default headers values

func (*SearchEligibleRemoteClustersOK) Error added in v1.2.0

func (*SearchEligibleRemoteClustersOK) GetPayload added in v1.2.0

type SearchEligibleRemoteClustersParams added in v1.2.0

type SearchEligibleRemoteClustersParams struct {

	/* Body.

	   (Optional) The search query to run against all deployments containing eligible remote clusters. When not specified, all the eligible deployments are matched.
	*/
	Body *models.SearchRequest

	/* Version.

	   The version of the Elasticsearch cluster cluster that will potentially be configured to have remote clusters.
	*/
	Version string

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

SearchEligibleRemoteClustersParams contains all the parameters to send to the API endpoint

for the search eligible remote clusters operation.

Typically these are written to a http.Request.

func NewSearchEligibleRemoteClustersParams added in v1.2.0

func NewSearchEligibleRemoteClustersParams() *SearchEligibleRemoteClustersParams

NewSearchEligibleRemoteClustersParams creates a new SearchEligibleRemoteClustersParams 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 NewSearchEligibleRemoteClustersParamsWithContext added in v1.2.0

func NewSearchEligibleRemoteClustersParamsWithContext(ctx context.Context) *SearchEligibleRemoteClustersParams

NewSearchEligibleRemoteClustersParamsWithContext creates a new SearchEligibleRemoteClustersParams object with the ability to set a context for a request.

func NewSearchEligibleRemoteClustersParamsWithHTTPClient added in v1.2.0

func NewSearchEligibleRemoteClustersParamsWithHTTPClient(client *http.Client) *SearchEligibleRemoteClustersParams

NewSearchEligibleRemoteClustersParamsWithHTTPClient creates a new SearchEligibleRemoteClustersParams object with the ability to set a custom HTTPClient for a request.

func NewSearchEligibleRemoteClustersParamsWithTimeout added in v1.2.0

func NewSearchEligibleRemoteClustersParamsWithTimeout(timeout time.Duration) *SearchEligibleRemoteClustersParams

NewSearchEligibleRemoteClustersParamsWithTimeout creates a new SearchEligibleRemoteClustersParams object with the ability to set a timeout on a request.

func (*SearchEligibleRemoteClustersParams) SetBody added in v1.2.0

SetBody adds the body to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) SetContext added in v1.2.0

SetContext adds the context to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) SetDefaults added in v1.3.0

func (o *SearchEligibleRemoteClustersParams) SetDefaults()

SetDefaults hydrates default values in the search eligible remote clusters params (not the query body).

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

func (*SearchEligibleRemoteClustersParams) SetHTTPClient added in v1.2.0

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

SetHTTPClient adds the HTTPClient to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) SetTimeout added in v1.2.0

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

SetTimeout adds the timeout to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) SetVersion added in v1.2.0

func (o *SearchEligibleRemoteClustersParams) SetVersion(version string)

SetVersion adds the version to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) WithBody added in v1.2.0

WithBody adds the body to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) WithContext added in v1.2.0

WithContext adds the context to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the search eligible remote clusters params (not the query body).

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

func (*SearchEligibleRemoteClustersParams) WithHTTPClient added in v1.2.0

WithHTTPClient adds the HTTPClient to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) WithTimeout added in v1.2.0

WithTimeout adds the timeout to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) WithVersion added in v1.2.0

WithVersion adds the version to the search eligible remote clusters params

func (*SearchEligibleRemoteClustersParams) WriteToRequest added in v1.2.0

WriteToRequest writes these params to a swagger request

type SearchEligibleRemoteClustersReader added in v1.2.0

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

SearchEligibleRemoteClustersReader is a Reader for the SearchEligibleRemoteClusters structure.

func (*SearchEligibleRemoteClustersReader) ReadResponse added in v1.2.0

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

ReadResponse reads a server response into the received o.

type SetAppsearchReadOnlyModeInternalServerError

type SetAppsearchReadOnlyModeInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetAppsearchReadOnlyModeInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewSetAppsearchReadOnlyModeInternalServerError

func NewSetAppsearchReadOnlyModeInternalServerError() *SetAppsearchReadOnlyModeInternalServerError

NewSetAppsearchReadOnlyModeInternalServerError creates a SetAppsearchReadOnlyModeInternalServerError with default headers values

func (*SetAppsearchReadOnlyModeInternalServerError) Error

func (*SetAppsearchReadOnlyModeInternalServerError) GetPayload

type SetAppsearchReadOnlyModeNotFound

type SetAppsearchReadOnlyModeNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetAppsearchReadOnlyModeNotFound describes a response with status code 404, with default header values.

The Resource specified by ref_id cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewSetAppsearchReadOnlyModeNotFound

func NewSetAppsearchReadOnlyModeNotFound() *SetAppsearchReadOnlyModeNotFound

NewSetAppsearchReadOnlyModeNotFound creates a SetAppsearchReadOnlyModeNotFound with default headers values

func (*SetAppsearchReadOnlyModeNotFound) Error

func (*SetAppsearchReadOnlyModeNotFound) GetPayload

type SetAppsearchReadOnlyModeOK

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

Standard response

func NewSetAppsearchReadOnlyModeOK

func NewSetAppsearchReadOnlyModeOK() *SetAppsearchReadOnlyModeOK

NewSetAppsearchReadOnlyModeOK creates a SetAppsearchReadOnlyModeOK with default headers values

func (*SetAppsearchReadOnlyModeOK) Error

func (*SetAppsearchReadOnlyModeOK) GetPayload

type SetAppsearchReadOnlyModeParams

type SetAppsearchReadOnlyModeParams struct {

	/* Body.

	   read-only request body
	*/
	Body *models.ReadOnlyRequest

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

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

SetAppsearchReadOnlyModeParams contains all the parameters to send to the API endpoint

for the set appsearch read only mode operation.

Typically these are written to a http.Request.

func NewSetAppsearchReadOnlyModeParams

func NewSetAppsearchReadOnlyModeParams() *SetAppsearchReadOnlyModeParams

NewSetAppsearchReadOnlyModeParams creates a new SetAppsearchReadOnlyModeParams 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 NewSetAppsearchReadOnlyModeParamsWithContext

func NewSetAppsearchReadOnlyModeParamsWithContext(ctx context.Context) *SetAppsearchReadOnlyModeParams

NewSetAppsearchReadOnlyModeParamsWithContext creates a new SetAppsearchReadOnlyModeParams object with the ability to set a context for a request.

func NewSetAppsearchReadOnlyModeParamsWithHTTPClient

func NewSetAppsearchReadOnlyModeParamsWithHTTPClient(client *http.Client) *SetAppsearchReadOnlyModeParams

NewSetAppsearchReadOnlyModeParamsWithHTTPClient creates a new SetAppsearchReadOnlyModeParams object with the ability to set a custom HTTPClient for a request.

func NewSetAppsearchReadOnlyModeParamsWithTimeout

func NewSetAppsearchReadOnlyModeParamsWithTimeout(timeout time.Duration) *SetAppsearchReadOnlyModeParams

NewSetAppsearchReadOnlyModeParamsWithTimeout creates a new SetAppsearchReadOnlyModeParams object with the ability to set a timeout on a request.

func (*SetAppsearchReadOnlyModeParams) SetBody

SetBody adds the body to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) SetContext

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

SetContext adds the context to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) SetDefaults added in v1.3.0

func (o *SetAppsearchReadOnlyModeParams) SetDefaults()

SetDefaults hydrates default values in the set appsearch read only mode params (not the query body).

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

func (*SetAppsearchReadOnlyModeParams) SetDeploymentID

func (o *SetAppsearchReadOnlyModeParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) SetRefID

func (o *SetAppsearchReadOnlyModeParams) SetRefID(refID string)

SetRefID adds the refId to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) SetTimeout

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

SetTimeout adds the timeout to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) WithBody

WithBody adds the body to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) WithContext

WithContext adds the context to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the set appsearch read only mode params (not the query body).

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

func (*SetAppsearchReadOnlyModeParams) WithDeploymentID

func (o *SetAppsearchReadOnlyModeParams) WithDeploymentID(deploymentID string) *SetAppsearchReadOnlyModeParams

WithDeploymentID adds the deploymentID to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) WithRefID

WithRefID adds the refID to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) WithTimeout

WithTimeout adds the timeout to the set appsearch read only mode params

func (*SetAppsearchReadOnlyModeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetAppsearchReadOnlyModeReader

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

SetAppsearchReadOnlyModeReader is a Reader for the SetAppsearchReadOnlyMode structure.

func (*SetAppsearchReadOnlyModeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SetAppsearchReadOnlyModeRetryWith

type SetAppsearchReadOnlyModeRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetAppsearchReadOnlyModeRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewSetAppsearchReadOnlyModeRetryWith

func NewSetAppsearchReadOnlyModeRetryWith() *SetAppsearchReadOnlyModeRetryWith

NewSetAppsearchReadOnlyModeRetryWith creates a SetAppsearchReadOnlyModeRetryWith with default headers values

func (*SetAppsearchReadOnlyModeRetryWith) Error

func (*SetAppsearchReadOnlyModeRetryWith) GetPayload

type SetDeploymentEsResourceKeystoreInternalServerError

type SetDeploymentEsResourceKeystoreInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentEsResourceKeystoreInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.metadata_internal_error`)

func NewSetDeploymentEsResourceKeystoreInternalServerError

func NewSetDeploymentEsResourceKeystoreInternalServerError() *SetDeploymentEsResourceKeystoreInternalServerError

NewSetDeploymentEsResourceKeystoreInternalServerError creates a SetDeploymentEsResourceKeystoreInternalServerError with default headers values

func (*SetDeploymentEsResourceKeystoreInternalServerError) Error

func (*SetDeploymentEsResourceKeystoreInternalServerError) GetPayload

type SetDeploymentEsResourceKeystoreNotFound

type SetDeploymentEsResourceKeystoreNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentEsResourceKeystoreNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewSetDeploymentEsResourceKeystoreNotFound

func NewSetDeploymentEsResourceKeystoreNotFound() *SetDeploymentEsResourceKeystoreNotFound

NewSetDeploymentEsResourceKeystoreNotFound creates a SetDeploymentEsResourceKeystoreNotFound with default headers values

func (*SetDeploymentEsResourceKeystoreNotFound) Error

func (*SetDeploymentEsResourceKeystoreNotFound) GetPayload

type SetDeploymentEsResourceKeystoreOK

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

The new value for the keystore contents

func NewSetDeploymentEsResourceKeystoreOK

func NewSetDeploymentEsResourceKeystoreOK() *SetDeploymentEsResourceKeystoreOK

NewSetDeploymentEsResourceKeystoreOK creates a SetDeploymentEsResourceKeystoreOK with default headers values

func (*SetDeploymentEsResourceKeystoreOK) Error

func (*SetDeploymentEsResourceKeystoreOK) GetPayload

type SetDeploymentEsResourceKeystoreParams

type SetDeploymentEsResourceKeystoreParams struct {

	/* Body.

	   The new settings that will be applied to the keystore of the Elasticsearch resource.
	*/
	Body *models.KeystoreContents

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

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

SetDeploymentEsResourceKeystoreParams contains all the parameters to send to the API endpoint

for the set deployment es resource keystore operation.

Typically these are written to a http.Request.

func NewSetDeploymentEsResourceKeystoreParams

func NewSetDeploymentEsResourceKeystoreParams() *SetDeploymentEsResourceKeystoreParams

NewSetDeploymentEsResourceKeystoreParams creates a new SetDeploymentEsResourceKeystoreParams 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 NewSetDeploymentEsResourceKeystoreParamsWithContext

func NewSetDeploymentEsResourceKeystoreParamsWithContext(ctx context.Context) *SetDeploymentEsResourceKeystoreParams

NewSetDeploymentEsResourceKeystoreParamsWithContext creates a new SetDeploymentEsResourceKeystoreParams object with the ability to set a context for a request.

func NewSetDeploymentEsResourceKeystoreParamsWithHTTPClient

func NewSetDeploymentEsResourceKeystoreParamsWithHTTPClient(client *http.Client) *SetDeploymentEsResourceKeystoreParams

NewSetDeploymentEsResourceKeystoreParamsWithHTTPClient creates a new SetDeploymentEsResourceKeystoreParams object with the ability to set a custom HTTPClient for a request.

func NewSetDeploymentEsResourceKeystoreParamsWithTimeout

func NewSetDeploymentEsResourceKeystoreParamsWithTimeout(timeout time.Duration) *SetDeploymentEsResourceKeystoreParams

NewSetDeploymentEsResourceKeystoreParamsWithTimeout creates a new SetDeploymentEsResourceKeystoreParams object with the ability to set a timeout on a request.

func (*SetDeploymentEsResourceKeystoreParams) SetBody

SetBody adds the body to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) SetContext

SetContext adds the context to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) SetDefaults added in v1.3.0

func (o *SetDeploymentEsResourceKeystoreParams) SetDefaults()

SetDefaults hydrates default values in the set deployment es resource keystore params (not the query body).

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

func (*SetDeploymentEsResourceKeystoreParams) SetDeploymentID

func (o *SetDeploymentEsResourceKeystoreParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) SetRefID

func (o *SetDeploymentEsResourceKeystoreParams) SetRefID(refID string)

SetRefID adds the refId to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) SetTimeout

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

SetTimeout adds the timeout to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) WithBody

WithBody adds the body to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) WithContext

WithContext adds the context to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the set deployment es resource keystore params (not the query body).

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

func (*SetDeploymentEsResourceKeystoreParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) WithRefID

WithRefID adds the refID to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) WithTimeout

WithTimeout adds the timeout to the set deployment es resource keystore params

func (*SetDeploymentEsResourceKeystoreParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetDeploymentEsResourceKeystoreReader

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

SetDeploymentEsResourceKeystoreReader is a Reader for the SetDeploymentEsResourceKeystore structure.

func (*SetDeploymentEsResourceKeystoreReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SetDeploymentEsResourceKeystoreRetryWith

type SetDeploymentEsResourceKeystoreRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentEsResourceKeystoreRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewSetDeploymentEsResourceKeystoreRetryWith

func NewSetDeploymentEsResourceKeystoreRetryWith() *SetDeploymentEsResourceKeystoreRetryWith

NewSetDeploymentEsResourceKeystoreRetryWith creates a SetDeploymentEsResourceKeystoreRetryWith with default headers values

func (*SetDeploymentEsResourceKeystoreRetryWith) Error

func (*SetDeploymentEsResourceKeystoreRetryWith) GetPayload

type SetDeploymentEsResourceRemoteClustersAccepted

type SetDeploymentEsResourceRemoteClustersAccepted struct {
	Payload models.EmptyResponse
}
SetDeploymentEsResourceRemoteClustersAccepted describes a response with status code 202, with default header values.

The Remote Clusters were updated

func NewSetDeploymentEsResourceRemoteClustersAccepted

func NewSetDeploymentEsResourceRemoteClustersAccepted() *SetDeploymentEsResourceRemoteClustersAccepted

NewSetDeploymentEsResourceRemoteClustersAccepted creates a SetDeploymentEsResourceRemoteClustersAccepted with default headers values

func (*SetDeploymentEsResourceRemoteClustersAccepted) Error

func (*SetDeploymentEsResourceRemoteClustersAccepted) GetPayload

type SetDeploymentEsResourceRemoteClustersNotFound

type SetDeploymentEsResourceRemoteClustersNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentEsResourceRemoteClustersNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewSetDeploymentEsResourceRemoteClustersNotFound

func NewSetDeploymentEsResourceRemoteClustersNotFound() *SetDeploymentEsResourceRemoteClustersNotFound

NewSetDeploymentEsResourceRemoteClustersNotFound creates a SetDeploymentEsResourceRemoteClustersNotFound with default headers values

func (*SetDeploymentEsResourceRemoteClustersNotFound) Error

func (*SetDeploymentEsResourceRemoteClustersNotFound) GetPayload

type SetDeploymentEsResourceRemoteClustersParams

type SetDeploymentEsResourceRemoteClustersParams struct {

	/* Body.

	   List of remote clusters for the resource
	*/
	Body *models.RemoteResources

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

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

SetDeploymentEsResourceRemoteClustersParams contains all the parameters to send to the API endpoint

for the set deployment es resource remote clusters operation.

Typically these are written to a http.Request.

func NewSetDeploymentEsResourceRemoteClustersParams

func NewSetDeploymentEsResourceRemoteClustersParams() *SetDeploymentEsResourceRemoteClustersParams

NewSetDeploymentEsResourceRemoteClustersParams creates a new SetDeploymentEsResourceRemoteClustersParams 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 NewSetDeploymentEsResourceRemoteClustersParamsWithContext

func NewSetDeploymentEsResourceRemoteClustersParamsWithContext(ctx context.Context) *SetDeploymentEsResourceRemoteClustersParams

NewSetDeploymentEsResourceRemoteClustersParamsWithContext creates a new SetDeploymentEsResourceRemoteClustersParams object with the ability to set a context for a request.

func NewSetDeploymentEsResourceRemoteClustersParamsWithHTTPClient

func NewSetDeploymentEsResourceRemoteClustersParamsWithHTTPClient(client *http.Client) *SetDeploymentEsResourceRemoteClustersParams

NewSetDeploymentEsResourceRemoteClustersParamsWithHTTPClient creates a new SetDeploymentEsResourceRemoteClustersParams object with the ability to set a custom HTTPClient for a request.

func NewSetDeploymentEsResourceRemoteClustersParamsWithTimeout

func NewSetDeploymentEsResourceRemoteClustersParamsWithTimeout(timeout time.Duration) *SetDeploymentEsResourceRemoteClustersParams

NewSetDeploymentEsResourceRemoteClustersParamsWithTimeout creates a new SetDeploymentEsResourceRemoteClustersParams object with the ability to set a timeout on a request.

func (*SetDeploymentEsResourceRemoteClustersParams) SetBody

SetBody adds the body to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) SetContext

SetContext adds the context to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the set deployment es resource remote clusters params (not the query body).

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

func (*SetDeploymentEsResourceRemoteClustersParams) SetDeploymentID

func (o *SetDeploymentEsResourceRemoteClustersParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) SetRefID

SetRefID adds the refId to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) SetTimeout

SetTimeout adds the timeout to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) WithBody

WithBody adds the body to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) WithContext

WithContext adds the context to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the set deployment es resource remote clusters params (not the query body).

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

func (*SetDeploymentEsResourceRemoteClustersParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) WithRefID

WithRefID adds the refID to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) WithTimeout

WithTimeout adds the timeout to the set deployment es resource remote clusters params

func (*SetDeploymentEsResourceRemoteClustersParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetDeploymentEsResourceRemoteClustersReader

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

SetDeploymentEsResourceRemoteClustersReader is a Reader for the SetDeploymentEsResourceRemoteClusters structure.

func (*SetDeploymentEsResourceRemoteClustersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SetDeploymentEsResourceRemoteClustersRetryWith

type SetDeploymentEsResourceRemoteClustersRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentEsResourceRemoteClustersRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewSetDeploymentEsResourceRemoteClustersRetryWith

func NewSetDeploymentEsResourceRemoteClustersRetryWith() *SetDeploymentEsResourceRemoteClustersRetryWith

NewSetDeploymentEsResourceRemoteClustersRetryWith creates a SetDeploymentEsResourceRemoteClustersRetryWith with default headers values

func (*SetDeploymentEsResourceRemoteClustersRetryWith) Error

func (*SetDeploymentEsResourceRemoteClustersRetryWith) GetPayload

type SetDeploymentResourceRawMetadataBadRequest

type SetDeploymentResourceRawMetadataBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentResourceRawMetadataBadRequest describes a response with status code 400, with default header values.

The metadata is invalid. (code: `deployments.invalid_metadata`)

func NewSetDeploymentResourceRawMetadataBadRequest

func NewSetDeploymentResourceRawMetadataBadRequest() *SetDeploymentResourceRawMetadataBadRequest

NewSetDeploymentResourceRawMetadataBadRequest creates a SetDeploymentResourceRawMetadataBadRequest with default headers values

func (*SetDeploymentResourceRawMetadataBadRequest) Error

func (*SetDeploymentResourceRawMetadataBadRequest) GetPayload

type SetDeploymentResourceRawMetadataInternalServerError

type SetDeploymentResourceRawMetadataInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentResourceRawMetadataInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.metadata_internal_error`)

func NewSetDeploymentResourceRawMetadataInternalServerError

func NewSetDeploymentResourceRawMetadataInternalServerError() *SetDeploymentResourceRawMetadataInternalServerError

NewSetDeploymentResourceRawMetadataInternalServerError creates a SetDeploymentResourceRawMetadataInternalServerError with default headers values

func (*SetDeploymentResourceRawMetadataInternalServerError) Error

func (*SetDeploymentResourceRawMetadataInternalServerError) GetPayload

type SetDeploymentResourceRawMetadataNotFound

type SetDeploymentResourceRawMetadataNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentResourceRawMetadataNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewSetDeploymentResourceRawMetadataNotFound

func NewSetDeploymentResourceRawMetadataNotFound() *SetDeploymentResourceRawMetadataNotFound

NewSetDeploymentResourceRawMetadataNotFound creates a SetDeploymentResourceRawMetadataNotFound with default headers values

func (*SetDeploymentResourceRawMetadataNotFound) Error

func (*SetDeploymentResourceRawMetadataNotFound) GetPayload

type SetDeploymentResourceRawMetadataOK

type SetDeploymentResourceRawMetadataOK struct {

	/* The date-time when the resource was created (ISO format relative to UTC)
	 */
	XCloudResourceCreated string

	/* The date-time when the resource was last modified (ISO format relative to UTC)
	 */
	XCloudResourceLastModified string

	/* The resource version, which is used to avoid update conflicts with concurrent operations
	 */
	XCloudResourceVersion string

	Payload string
}
SetDeploymentResourceRawMetadataOK describes a response with status code 200, with default header values.

The resource metadata was successfully changed (the updated JSON is returned)

func NewSetDeploymentResourceRawMetadataOK

func NewSetDeploymentResourceRawMetadataOK() *SetDeploymentResourceRawMetadataOK

NewSetDeploymentResourceRawMetadataOK creates a SetDeploymentResourceRawMetadataOK with default headers values

func (*SetDeploymentResourceRawMetadataOK) Error

func (*SetDeploymentResourceRawMetadataOK) GetPayload

type SetDeploymentResourceRawMetadataParams

type SetDeploymentResourceRawMetadataParams struct {

	/* Body.

	   The freeform JSON for the cluster (should always be based on the current version retrieved from the GET)
	*/
	Body string

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource
	*/
	ResourceKind string

	/* Version.

	   If specified, checks for conflicts against the metadata version (returned in 'x-cloud-resource-version' of the GET request)
	*/
	Version *string

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

SetDeploymentResourceRawMetadataParams contains all the parameters to send to the API endpoint

for the set deployment resource raw metadata operation.

Typically these are written to a http.Request.

func NewSetDeploymentResourceRawMetadataParams

func NewSetDeploymentResourceRawMetadataParams() *SetDeploymentResourceRawMetadataParams

NewSetDeploymentResourceRawMetadataParams creates a new SetDeploymentResourceRawMetadataParams 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 NewSetDeploymentResourceRawMetadataParamsWithContext

func NewSetDeploymentResourceRawMetadataParamsWithContext(ctx context.Context) *SetDeploymentResourceRawMetadataParams

NewSetDeploymentResourceRawMetadataParamsWithContext creates a new SetDeploymentResourceRawMetadataParams object with the ability to set a context for a request.

func NewSetDeploymentResourceRawMetadataParamsWithHTTPClient

func NewSetDeploymentResourceRawMetadataParamsWithHTTPClient(client *http.Client) *SetDeploymentResourceRawMetadataParams

NewSetDeploymentResourceRawMetadataParamsWithHTTPClient creates a new SetDeploymentResourceRawMetadataParams object with the ability to set a custom HTTPClient for a request.

func NewSetDeploymentResourceRawMetadataParamsWithTimeout

func NewSetDeploymentResourceRawMetadataParamsWithTimeout(timeout time.Duration) *SetDeploymentResourceRawMetadataParams

NewSetDeploymentResourceRawMetadataParamsWithTimeout creates a new SetDeploymentResourceRawMetadataParams object with the ability to set a timeout on a request.

func (*SetDeploymentResourceRawMetadataParams) SetBody

SetBody adds the body to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) SetContext

SetContext adds the context to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) SetDefaults added in v1.3.0

func (o *SetDeploymentResourceRawMetadataParams) SetDefaults()

SetDefaults hydrates default values in the set deployment resource raw metadata params (not the query body).

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

func (*SetDeploymentResourceRawMetadataParams) SetDeploymentID

func (o *SetDeploymentResourceRawMetadataParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) SetRefID

SetRefID adds the refId to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) SetResourceKind

func (o *SetDeploymentResourceRawMetadataParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) SetTimeout

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

SetTimeout adds the timeout to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) SetVersion

func (o *SetDeploymentResourceRawMetadataParams) SetVersion(version *string)

SetVersion adds the version to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WithBody

WithBody adds the body to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WithContext

WithContext adds the context to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the set deployment resource raw metadata params (not the query body).

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

func (*SetDeploymentResourceRawMetadataParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WithRefID

WithRefID adds the refID to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WithResourceKind

WithResourceKind adds the resourceKind to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WithTimeout

WithTimeout adds the timeout to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WithVersion

WithVersion adds the version to the set deployment resource raw metadata params

func (*SetDeploymentResourceRawMetadataParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetDeploymentResourceRawMetadataReader

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

SetDeploymentResourceRawMetadataReader is a Reader for the SetDeploymentResourceRawMetadata structure.

func (*SetDeploymentResourceRawMetadataReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SetDeploymentResourceRawMetadataRetryWith

type SetDeploymentResourceRawMetadataRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
SetDeploymentResourceRawMetadataRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewSetDeploymentResourceRawMetadataRetryWith

func NewSetDeploymentResourceRawMetadataRetryWith() *SetDeploymentResourceRawMetadataRetryWith

NewSetDeploymentResourceRawMetadataRetryWith creates a SetDeploymentResourceRawMetadataRetryWith with default headers values

func (*SetDeploymentResourceRawMetadataRetryWith) Error

func (*SetDeploymentResourceRawMetadataRetryWith) GetPayload

type ShutdownDeploymentBadRequest

type ShutdownDeploymentBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentBadRequest describes a response with status code 400, with default header values.

Parameter is restricted and can only be set by a Platform administrator. (code: `deployments.restricted_parameter`)

func NewShutdownDeploymentBadRequest

func NewShutdownDeploymentBadRequest() *ShutdownDeploymentBadRequest

NewShutdownDeploymentBadRequest creates a ShutdownDeploymentBadRequest with default headers values

func (*ShutdownDeploymentBadRequest) Error

func (*ShutdownDeploymentBadRequest) GetPayload

type ShutdownDeploymentEsResourceBadRequest

type ShutdownDeploymentEsResourceBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentEsResourceBadRequest describes a response with status code 400, with default header values.

Parameter is restricted and can only be set by a Platform administrator. (code: `deployments.restricted_parameter`)

func NewShutdownDeploymentEsResourceBadRequest

func NewShutdownDeploymentEsResourceBadRequest() *ShutdownDeploymentEsResourceBadRequest

NewShutdownDeploymentEsResourceBadRequest creates a ShutdownDeploymentEsResourceBadRequest with default headers values

func (*ShutdownDeploymentEsResourceBadRequest) Error

func (*ShutdownDeploymentEsResourceBadRequest) GetPayload

type ShutdownDeploymentEsResourceInternalServerError

type ShutdownDeploymentEsResourceInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentEsResourceInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewShutdownDeploymentEsResourceInternalServerError

func NewShutdownDeploymentEsResourceInternalServerError() *ShutdownDeploymentEsResourceInternalServerError

NewShutdownDeploymentEsResourceInternalServerError creates a ShutdownDeploymentEsResourceInternalServerError with default headers values

func (*ShutdownDeploymentEsResourceInternalServerError) Error

func (*ShutdownDeploymentEsResourceInternalServerError) GetPayload

type ShutdownDeploymentEsResourceNotFound

type ShutdownDeploymentEsResourceNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentEsResourceNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewShutdownDeploymentEsResourceNotFound

func NewShutdownDeploymentEsResourceNotFound() *ShutdownDeploymentEsResourceNotFound

NewShutdownDeploymentEsResourceNotFound creates a ShutdownDeploymentEsResourceNotFound with default headers values

func (*ShutdownDeploymentEsResourceNotFound) Error

func (*ShutdownDeploymentEsResourceNotFound) GetPayload

type ShutdownDeploymentEsResourceOK

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

Standard response.

func NewShutdownDeploymentEsResourceOK

func NewShutdownDeploymentEsResourceOK() *ShutdownDeploymentEsResourceOK

NewShutdownDeploymentEsResourceOK creates a ShutdownDeploymentEsResourceOK with default headers values

func (*ShutdownDeploymentEsResourceOK) Error

func (*ShutdownDeploymentEsResourceOK) GetPayload

type ShutdownDeploymentEsResourceParams

type ShutdownDeploymentEsResourceParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* Hide.

	   Hide cluster on shutdown. Hidden clusters are not listed by default. Only applicable for Platform administrators.
	*/
	Hide *bool

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* SkipSnapshot.

	   If true, will skip taking a snapshot of the cluster before shutting the cluster down (if even possible).
	*/
	SkipSnapshot *bool

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

ShutdownDeploymentEsResourceParams contains all the parameters to send to the API endpoint

for the shutdown deployment es resource operation.

Typically these are written to a http.Request.

func NewShutdownDeploymentEsResourceParams

func NewShutdownDeploymentEsResourceParams() *ShutdownDeploymentEsResourceParams

NewShutdownDeploymentEsResourceParams creates a new ShutdownDeploymentEsResourceParams 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 NewShutdownDeploymentEsResourceParamsWithContext

func NewShutdownDeploymentEsResourceParamsWithContext(ctx context.Context) *ShutdownDeploymentEsResourceParams

NewShutdownDeploymentEsResourceParamsWithContext creates a new ShutdownDeploymentEsResourceParams object with the ability to set a context for a request.

func NewShutdownDeploymentEsResourceParamsWithHTTPClient

func NewShutdownDeploymentEsResourceParamsWithHTTPClient(client *http.Client) *ShutdownDeploymentEsResourceParams

NewShutdownDeploymentEsResourceParamsWithHTTPClient creates a new ShutdownDeploymentEsResourceParams object with the ability to set a custom HTTPClient for a request.

func NewShutdownDeploymentEsResourceParamsWithTimeout

func NewShutdownDeploymentEsResourceParamsWithTimeout(timeout time.Duration) *ShutdownDeploymentEsResourceParams

NewShutdownDeploymentEsResourceParamsWithTimeout creates a new ShutdownDeploymentEsResourceParams object with the ability to set a timeout on a request.

func (*ShutdownDeploymentEsResourceParams) SetContext

SetContext adds the context to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) SetDefaults added in v1.3.0

func (o *ShutdownDeploymentEsResourceParams) SetDefaults()

SetDefaults hydrates default values in the shutdown deployment es resource params (not the query body).

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

func (*ShutdownDeploymentEsResourceParams) SetDeploymentID

func (o *ShutdownDeploymentEsResourceParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) SetHide

func (o *ShutdownDeploymentEsResourceParams) SetHide(hide *bool)

SetHide adds the hide to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) SetRefID

func (o *ShutdownDeploymentEsResourceParams) SetRefID(refID string)

SetRefID adds the refId to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) SetSkipSnapshot

func (o *ShutdownDeploymentEsResourceParams) SetSkipSnapshot(skipSnapshot *bool)

SetSkipSnapshot adds the skipSnapshot to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) SetTimeout

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

SetTimeout adds the timeout to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) WithContext

WithContext adds the context to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the shutdown deployment es resource params (not the query body).

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

func (*ShutdownDeploymentEsResourceParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) WithHide

WithHide adds the hide to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) WithRefID

WithRefID adds the refID to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) WithSkipSnapshot

WithSkipSnapshot adds the skipSnapshot to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) WithTimeout

WithTimeout adds the timeout to the shutdown deployment es resource params

func (*ShutdownDeploymentEsResourceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ShutdownDeploymentEsResourceReader

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

ShutdownDeploymentEsResourceReader is a Reader for the ShutdownDeploymentEsResource structure.

func (*ShutdownDeploymentEsResourceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ShutdownDeploymentNotFound

type ShutdownDeploymentNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewShutdownDeploymentNotFound

func NewShutdownDeploymentNotFound() *ShutdownDeploymentNotFound

NewShutdownDeploymentNotFound creates a ShutdownDeploymentNotFound with default headers values

func (*ShutdownDeploymentNotFound) Error

func (*ShutdownDeploymentNotFound) GetPayload

type ShutdownDeploymentOK

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

The request was valid and the resources of the deployment were shutdown.

func NewShutdownDeploymentOK

func NewShutdownDeploymentOK() *ShutdownDeploymentOK

NewShutdownDeploymentOK creates a ShutdownDeploymentOK with default headers values

func (*ShutdownDeploymentOK) Error

func (o *ShutdownDeploymentOK) Error() string

func (*ShutdownDeploymentOK) GetPayload

type ShutdownDeploymentParams

type ShutdownDeploymentParams struct {

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* Hide.

	   Whether or not to hide the deployment and its resources.Only applicable for Platform administrators.
	*/
	Hide *bool

	/* SkipSnapshot.

	   Whether or not to skip snapshots before shutting down the resources
	*/
	SkipSnapshot *bool

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

ShutdownDeploymentParams contains all the parameters to send to the API endpoint

for the shutdown deployment operation.

Typically these are written to a http.Request.

func NewShutdownDeploymentParams

func NewShutdownDeploymentParams() *ShutdownDeploymentParams

NewShutdownDeploymentParams creates a new ShutdownDeploymentParams 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 NewShutdownDeploymentParamsWithContext

func NewShutdownDeploymentParamsWithContext(ctx context.Context) *ShutdownDeploymentParams

NewShutdownDeploymentParamsWithContext creates a new ShutdownDeploymentParams object with the ability to set a context for a request.

func NewShutdownDeploymentParamsWithHTTPClient

func NewShutdownDeploymentParamsWithHTTPClient(client *http.Client) *ShutdownDeploymentParams

NewShutdownDeploymentParamsWithHTTPClient creates a new ShutdownDeploymentParams object with the ability to set a custom HTTPClient for a request.

func NewShutdownDeploymentParamsWithTimeout

func NewShutdownDeploymentParamsWithTimeout(timeout time.Duration) *ShutdownDeploymentParams

NewShutdownDeploymentParamsWithTimeout creates a new ShutdownDeploymentParams object with the ability to set a timeout on a request.

func (*ShutdownDeploymentParams) SetContext

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

SetContext adds the context to the shutdown deployment params

func (*ShutdownDeploymentParams) SetDefaults added in v1.3.0

func (o *ShutdownDeploymentParams) SetDefaults()

SetDefaults hydrates default values in the shutdown deployment params (not the query body).

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

func (*ShutdownDeploymentParams) SetDeploymentID

func (o *ShutdownDeploymentParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the shutdown deployment params

func (*ShutdownDeploymentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the shutdown deployment params

func (*ShutdownDeploymentParams) SetHide

func (o *ShutdownDeploymentParams) SetHide(hide *bool)

SetHide adds the hide to the shutdown deployment params

func (*ShutdownDeploymentParams) SetSkipSnapshot

func (o *ShutdownDeploymentParams) SetSkipSnapshot(skipSnapshot *bool)

SetSkipSnapshot adds the skipSnapshot to the shutdown deployment params

func (*ShutdownDeploymentParams) SetTimeout

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

SetTimeout adds the timeout to the shutdown deployment params

func (*ShutdownDeploymentParams) WithContext

WithContext adds the context to the shutdown deployment params

func (*ShutdownDeploymentParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the shutdown deployment params (not the query body).

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

func (*ShutdownDeploymentParams) WithDeploymentID

func (o *ShutdownDeploymentParams) WithDeploymentID(deploymentID string) *ShutdownDeploymentParams

WithDeploymentID adds the deploymentID to the shutdown deployment params

func (*ShutdownDeploymentParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the shutdown deployment params

func (*ShutdownDeploymentParams) WithHide

WithHide adds the hide to the shutdown deployment params

func (*ShutdownDeploymentParams) WithSkipSnapshot

func (o *ShutdownDeploymentParams) WithSkipSnapshot(skipSnapshot *bool) *ShutdownDeploymentParams

WithSkipSnapshot adds the skipSnapshot to the shutdown deployment params

func (*ShutdownDeploymentParams) WithTimeout

WithTimeout adds the timeout to the shutdown deployment params

func (*ShutdownDeploymentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ShutdownDeploymentReader

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

ShutdownDeploymentReader is a Reader for the ShutdownDeployment structure.

func (*ShutdownDeploymentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ShutdownDeploymentStatelessResourceBadRequest

type ShutdownDeploymentStatelessResourceBadRequest struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentStatelessResourceBadRequest describes a response with status code 400, with default header values.

Parameter is restricted and can only be set by a Platform administrator. (code: `deployments.restricted_parameter`)

func NewShutdownDeploymentStatelessResourceBadRequest

func NewShutdownDeploymentStatelessResourceBadRequest() *ShutdownDeploymentStatelessResourceBadRequest

NewShutdownDeploymentStatelessResourceBadRequest creates a ShutdownDeploymentStatelessResourceBadRequest with default headers values

func (*ShutdownDeploymentStatelessResourceBadRequest) Error

func (*ShutdownDeploymentStatelessResourceBadRequest) GetPayload

type ShutdownDeploymentStatelessResourceInternalServerError

type ShutdownDeploymentStatelessResourceInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentStatelessResourceInternalServerError describes a response with status code 500, with default header values.

We have failed you. (code: `deployments.deployment_resource_no_longer_exists`)

func NewShutdownDeploymentStatelessResourceInternalServerError

func NewShutdownDeploymentStatelessResourceInternalServerError() *ShutdownDeploymentStatelessResourceInternalServerError

NewShutdownDeploymentStatelessResourceInternalServerError creates a ShutdownDeploymentStatelessResourceInternalServerError with default headers values

func (*ShutdownDeploymentStatelessResourceInternalServerError) Error

func (*ShutdownDeploymentStatelessResourceInternalServerError) GetPayload

type ShutdownDeploymentStatelessResourceNotFound

type ShutdownDeploymentStatelessResourceNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentStatelessResourceNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewShutdownDeploymentStatelessResourceNotFound

func NewShutdownDeploymentStatelessResourceNotFound() *ShutdownDeploymentStatelessResourceNotFound

NewShutdownDeploymentStatelessResourceNotFound creates a ShutdownDeploymentStatelessResourceNotFound with default headers values

func (*ShutdownDeploymentStatelessResourceNotFound) Error

func (*ShutdownDeploymentStatelessResourceNotFound) GetPayload

type ShutdownDeploymentStatelessResourceOK

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

Standard response

func NewShutdownDeploymentStatelessResourceOK

func NewShutdownDeploymentStatelessResourceOK() *ShutdownDeploymentStatelessResourceOK

NewShutdownDeploymentStatelessResourceOK creates a ShutdownDeploymentStatelessResourceOK with default headers values

func (*ShutdownDeploymentStatelessResourceOK) Error

func (*ShutdownDeploymentStatelessResourceOK) GetPayload

type ShutdownDeploymentStatelessResourceParams

type ShutdownDeploymentStatelessResourceParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* Hide.

	   Hide cluster on shutdown. Hidden clusters are not listed by default. Only applicable for Platform administrators.
	*/
	Hide *bool

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* SkipSnapshot.

	   If true, will skip taking a snapshot of the cluster before shutting the cluster down (if even possible)
	*/
	SkipSnapshot *bool

	/* StatelessResourceKind.

	   The kind of stateless resource
	*/
	StatelessResourceKind string

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

ShutdownDeploymentStatelessResourceParams contains all the parameters to send to the API endpoint

for the shutdown deployment stateless resource operation.

Typically these are written to a http.Request.

func NewShutdownDeploymentStatelessResourceParams

func NewShutdownDeploymentStatelessResourceParams() *ShutdownDeploymentStatelessResourceParams

NewShutdownDeploymentStatelessResourceParams creates a new ShutdownDeploymentStatelessResourceParams 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 NewShutdownDeploymentStatelessResourceParamsWithContext

func NewShutdownDeploymentStatelessResourceParamsWithContext(ctx context.Context) *ShutdownDeploymentStatelessResourceParams

NewShutdownDeploymentStatelessResourceParamsWithContext creates a new ShutdownDeploymentStatelessResourceParams object with the ability to set a context for a request.

func NewShutdownDeploymentStatelessResourceParamsWithHTTPClient

func NewShutdownDeploymentStatelessResourceParamsWithHTTPClient(client *http.Client) *ShutdownDeploymentStatelessResourceParams

NewShutdownDeploymentStatelessResourceParamsWithHTTPClient creates a new ShutdownDeploymentStatelessResourceParams object with the ability to set a custom HTTPClient for a request.

func NewShutdownDeploymentStatelessResourceParamsWithTimeout

func NewShutdownDeploymentStatelessResourceParamsWithTimeout(timeout time.Duration) *ShutdownDeploymentStatelessResourceParams

NewShutdownDeploymentStatelessResourceParamsWithTimeout creates a new ShutdownDeploymentStatelessResourceParams object with the ability to set a timeout on a request.

func (*ShutdownDeploymentStatelessResourceParams) SetContext

SetContext adds the context to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the shutdown deployment stateless resource params (not the query body).

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

func (*ShutdownDeploymentStatelessResourceParams) SetDeploymentID

func (o *ShutdownDeploymentStatelessResourceParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) SetHide

SetHide adds the hide to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) SetRefID

SetRefID adds the refId to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) SetSkipSnapshot

func (o *ShutdownDeploymentStatelessResourceParams) SetSkipSnapshot(skipSnapshot *bool)

SetSkipSnapshot adds the skipSnapshot to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) SetStatelessResourceKind

func (o *ShutdownDeploymentStatelessResourceParams) SetStatelessResourceKind(statelessResourceKind string)

SetStatelessResourceKind adds the statelessResourceKind to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) SetTimeout

SetTimeout adds the timeout to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WithContext

WithContext adds the context to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the shutdown deployment stateless resource params (not the query body).

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

func (*ShutdownDeploymentStatelessResourceParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WithHide

WithHide adds the hide to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WithRefID

WithRefID adds the refID to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WithSkipSnapshot

WithSkipSnapshot adds the skipSnapshot to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WithStatelessResourceKind

func (o *ShutdownDeploymentStatelessResourceParams) WithStatelessResourceKind(statelessResourceKind string) *ShutdownDeploymentStatelessResourceParams

WithStatelessResourceKind adds the statelessResourceKind to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WithTimeout

WithTimeout adds the timeout to the shutdown deployment stateless resource params

func (*ShutdownDeploymentStatelessResourceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ShutdownDeploymentStatelessResourceReader

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

ShutdownDeploymentStatelessResourceReader is a Reader for the ShutdownDeploymentStatelessResource structure.

func (*ShutdownDeploymentStatelessResourceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ShutdownDeploymentStatelessResourceRetryWith

type ShutdownDeploymentStatelessResourceRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
ShutdownDeploymentStatelessResourceRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewShutdownDeploymentStatelessResourceRetryWith

func NewShutdownDeploymentStatelessResourceRetryWith() *ShutdownDeploymentStatelessResourceRetryWith

NewShutdownDeploymentStatelessResourceRetryWith creates a ShutdownDeploymentStatelessResourceRetryWith with default headers values

func (*ShutdownDeploymentStatelessResourceRetryWith) Error

func (*ShutdownDeploymentStatelessResourceRetryWith) GetPayload

type ShutdownDeploymentUnauthorized

type ShutdownDeploymentUnauthorized struct {
	Payload *models.BasicFailedReply
}
ShutdownDeploymentUnauthorized describes a response with status code 401, with default header values.

You are not authorized to perform this action.

func NewShutdownDeploymentUnauthorized

func NewShutdownDeploymentUnauthorized() *ShutdownDeploymentUnauthorized

NewShutdownDeploymentUnauthorized creates a ShutdownDeploymentUnauthorized with default headers values

func (*ShutdownDeploymentUnauthorized) Error

func (*ShutdownDeploymentUnauthorized) GetPayload

type StartDeploymentResourceInstancesAccepted

type StartDeploymentResourceInstancesAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
StartDeploymentResourceInstancesAccepted describes a response with status code 202, with default header values.

The start command was issued successfully.

func NewStartDeploymentResourceInstancesAccepted

func NewStartDeploymentResourceInstancesAccepted() *StartDeploymentResourceInstancesAccepted

NewStartDeploymentResourceInstancesAccepted creates a StartDeploymentResourceInstancesAccepted with default headers values

func (*StartDeploymentResourceInstancesAccepted) Error

func (*StartDeploymentResourceInstancesAccepted) GetPayload

type StartDeploymentResourceInstancesAllAccepted

type StartDeploymentResourceInstancesAllAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
StartDeploymentResourceInstancesAllAccepted describes a response with status code 202, with default header values.

The start command was issued successfully.

func NewStartDeploymentResourceInstancesAllAccepted

func NewStartDeploymentResourceInstancesAllAccepted() *StartDeploymentResourceInstancesAllAccepted

NewStartDeploymentResourceInstancesAllAccepted creates a StartDeploymentResourceInstancesAllAccepted with default headers values

func (*StartDeploymentResourceInstancesAllAccepted) Error

func (*StartDeploymentResourceInstancesAllAccepted) GetPayload

type StartDeploymentResourceInstancesAllForbidden

type StartDeploymentResourceInstancesAllForbidden struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesAllForbidden describes a response with status code 403, with default header values.

The start maintenance mode command was prohibited for the given Resource. (code: `deployments.instance_update_prohibited_error`)

func NewStartDeploymentResourceInstancesAllForbidden

func NewStartDeploymentResourceInstancesAllForbidden() *StartDeploymentResourceInstancesAllForbidden

NewStartDeploymentResourceInstancesAllForbidden creates a StartDeploymentResourceInstancesAllForbidden with default headers values

func (*StartDeploymentResourceInstancesAllForbidden) Error

func (*StartDeploymentResourceInstancesAllForbidden) GetPayload

type StartDeploymentResourceInstancesAllInternalServerError

type StartDeploymentResourceInstancesAllInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesAllInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewStartDeploymentResourceInstancesAllInternalServerError

func NewStartDeploymentResourceInstancesAllInternalServerError() *StartDeploymentResourceInstancesAllInternalServerError

NewStartDeploymentResourceInstancesAllInternalServerError creates a StartDeploymentResourceInstancesAllInternalServerError with default headers values

func (*StartDeploymentResourceInstancesAllInternalServerError) Error

func (*StartDeploymentResourceInstancesAllInternalServerError) GetPayload

type StartDeploymentResourceInstancesAllMaintenanceModeAccepted

type StartDeploymentResourceInstancesAllMaintenanceModeAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
StartDeploymentResourceInstancesAllMaintenanceModeAccepted describes a response with status code 202, with default header values.

The start maintenance command was issued successfully.

func NewStartDeploymentResourceInstancesAllMaintenanceModeAccepted

func NewStartDeploymentResourceInstancesAllMaintenanceModeAccepted() *StartDeploymentResourceInstancesAllMaintenanceModeAccepted

NewStartDeploymentResourceInstancesAllMaintenanceModeAccepted creates a StartDeploymentResourceInstancesAllMaintenanceModeAccepted with default headers values

func (*StartDeploymentResourceInstancesAllMaintenanceModeAccepted) Error

func (*StartDeploymentResourceInstancesAllMaintenanceModeAccepted) GetPayload

type StartDeploymentResourceInstancesAllMaintenanceModeForbidden

type StartDeploymentResourceInstancesAllMaintenanceModeForbidden struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesAllMaintenanceModeForbidden describes a response with status code 403, with default header values.

The start maintenance mode command was prohibited for the given Resource. (code: `deployments.instance_update_prohibited_error`)

func NewStartDeploymentResourceInstancesAllMaintenanceModeForbidden

func NewStartDeploymentResourceInstancesAllMaintenanceModeForbidden() *StartDeploymentResourceInstancesAllMaintenanceModeForbidden

NewStartDeploymentResourceInstancesAllMaintenanceModeForbidden creates a StartDeploymentResourceInstancesAllMaintenanceModeForbidden with default headers values

func (*StartDeploymentResourceInstancesAllMaintenanceModeForbidden) Error

func (*StartDeploymentResourceInstancesAllMaintenanceModeForbidden) GetPayload

type StartDeploymentResourceInstancesAllMaintenanceModeInternalServerError

type StartDeploymentResourceInstancesAllMaintenanceModeInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesAllMaintenanceModeInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewStartDeploymentResourceInstancesAllMaintenanceModeInternalServerError

func NewStartDeploymentResourceInstancesAllMaintenanceModeInternalServerError() *StartDeploymentResourceInstancesAllMaintenanceModeInternalServerError

NewStartDeploymentResourceInstancesAllMaintenanceModeInternalServerError creates a StartDeploymentResourceInstancesAllMaintenanceModeInternalServerError with default headers values

func (*StartDeploymentResourceInstancesAllMaintenanceModeInternalServerError) Error

func (*StartDeploymentResourceInstancesAllMaintenanceModeInternalServerError) GetPayload

type StartDeploymentResourceInstancesAllMaintenanceModeNotFound

type StartDeploymentResourceInstancesAllMaintenanceModeNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesAllMaintenanceModeNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`) * One or more instances of the given resource type are missing. (code: `deployments.instances_missing_on_update_error`)

func NewStartDeploymentResourceInstancesAllMaintenanceModeNotFound

func NewStartDeploymentResourceInstancesAllMaintenanceModeNotFound() *StartDeploymentResourceInstancesAllMaintenanceModeNotFound

NewStartDeploymentResourceInstancesAllMaintenanceModeNotFound creates a StartDeploymentResourceInstancesAllMaintenanceModeNotFound with default headers values

func (*StartDeploymentResourceInstancesAllMaintenanceModeNotFound) Error

func (*StartDeploymentResourceInstancesAllMaintenanceModeNotFound) GetPayload

type StartDeploymentResourceInstancesAllMaintenanceModeParams

type StartDeploymentResourceInstancesAllMaintenanceModeParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource (one of elasticsearch, kibana or apm).
	*/
	ResourceKind string

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

StartDeploymentResourceInstancesAllMaintenanceModeParams contains all the parameters to send to the API endpoint

for the start deployment resource instances all maintenance mode operation.

Typically these are written to a http.Request.

func NewStartDeploymentResourceInstancesAllMaintenanceModeParams

func NewStartDeploymentResourceInstancesAllMaintenanceModeParams() *StartDeploymentResourceInstancesAllMaintenanceModeParams

NewStartDeploymentResourceInstancesAllMaintenanceModeParams creates a new StartDeploymentResourceInstancesAllMaintenanceModeParams 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 NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithContext

func NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithContext(ctx context.Context) *StartDeploymentResourceInstancesAllMaintenanceModeParams

NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithContext creates a new StartDeploymentResourceInstancesAllMaintenanceModeParams object with the ability to set a context for a request.

func NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithHTTPClient

func NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithHTTPClient(client *http.Client) *StartDeploymentResourceInstancesAllMaintenanceModeParams

NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithHTTPClient creates a new StartDeploymentResourceInstancesAllMaintenanceModeParams object with the ability to set a custom HTTPClient for a request.

func NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithTimeout

func NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithTimeout(timeout time.Duration) *StartDeploymentResourceInstancesAllMaintenanceModeParams

NewStartDeploymentResourceInstancesAllMaintenanceModeParamsWithTimeout creates a new StartDeploymentResourceInstancesAllMaintenanceModeParams object with the ability to set a timeout on a request.

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) SetContext

SetContext adds the context to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the start deployment resource instances all maintenance mode params (not the query body).

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

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) SetDeploymentID

func (o *StartDeploymentResourceInstancesAllMaintenanceModeParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) SetRefID

SetRefID adds the refId to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) SetResourceKind

func (o *StartDeploymentResourceInstancesAllMaintenanceModeParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) SetTimeout

SetTimeout adds the timeout to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) WithContext

WithContext adds the context to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the start deployment resource instances all maintenance mode params (not the query body).

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

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) WithRefID

WithRefID adds the refID to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) WithResourceKind

WithResourceKind adds the resourceKind to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) WithTimeout

WithTimeout adds the timeout to the start deployment resource instances all maintenance mode params

func (*StartDeploymentResourceInstancesAllMaintenanceModeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StartDeploymentResourceInstancesAllMaintenanceModeReader

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

StartDeploymentResourceInstancesAllMaintenanceModeReader is a Reader for the StartDeploymentResourceInstancesAllMaintenanceMode structure.

func (*StartDeploymentResourceInstancesAllMaintenanceModeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StartDeploymentResourceInstancesAllMaintenanceModeRetryWith

type StartDeploymentResourceInstancesAllMaintenanceModeRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesAllMaintenanceModeRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewStartDeploymentResourceInstancesAllMaintenanceModeRetryWith

func NewStartDeploymentResourceInstancesAllMaintenanceModeRetryWith() *StartDeploymentResourceInstancesAllMaintenanceModeRetryWith

NewStartDeploymentResourceInstancesAllMaintenanceModeRetryWith creates a StartDeploymentResourceInstancesAllMaintenanceModeRetryWith with default headers values

func (*StartDeploymentResourceInstancesAllMaintenanceModeRetryWith) Error

func (*StartDeploymentResourceInstancesAllMaintenanceModeRetryWith) GetPayload

type StartDeploymentResourceInstancesAllNotFound

type StartDeploymentResourceInstancesAllNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesAllNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`) * One or more instances of the given resource type are missing. (code: `deployments.instances_missing_on_update_error`)

func NewStartDeploymentResourceInstancesAllNotFound

func NewStartDeploymentResourceInstancesAllNotFound() *StartDeploymentResourceInstancesAllNotFound

NewStartDeploymentResourceInstancesAllNotFound creates a StartDeploymentResourceInstancesAllNotFound with default headers values

func (*StartDeploymentResourceInstancesAllNotFound) Error

func (*StartDeploymentResourceInstancesAllNotFound) GetPayload

type StartDeploymentResourceInstancesAllParams

type StartDeploymentResourceInstancesAllParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource (one of elasticsearch, kibana or apm).
	*/
	ResourceKind string

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

StartDeploymentResourceInstancesAllParams contains all the parameters to send to the API endpoint

for the start deployment resource instances all operation.

Typically these are written to a http.Request.

func NewStartDeploymentResourceInstancesAllParams

func NewStartDeploymentResourceInstancesAllParams() *StartDeploymentResourceInstancesAllParams

NewStartDeploymentResourceInstancesAllParams creates a new StartDeploymentResourceInstancesAllParams 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 NewStartDeploymentResourceInstancesAllParamsWithContext

func NewStartDeploymentResourceInstancesAllParamsWithContext(ctx context.Context) *StartDeploymentResourceInstancesAllParams

NewStartDeploymentResourceInstancesAllParamsWithContext creates a new StartDeploymentResourceInstancesAllParams object with the ability to set a context for a request.

func NewStartDeploymentResourceInstancesAllParamsWithHTTPClient

func NewStartDeploymentResourceInstancesAllParamsWithHTTPClient(client *http.Client) *StartDeploymentResourceInstancesAllParams

NewStartDeploymentResourceInstancesAllParamsWithHTTPClient creates a new StartDeploymentResourceInstancesAllParams object with the ability to set a custom HTTPClient for a request.

func NewStartDeploymentResourceInstancesAllParamsWithTimeout

func NewStartDeploymentResourceInstancesAllParamsWithTimeout(timeout time.Duration) *StartDeploymentResourceInstancesAllParams

NewStartDeploymentResourceInstancesAllParamsWithTimeout creates a new StartDeploymentResourceInstancesAllParams object with the ability to set a timeout on a request.

func (*StartDeploymentResourceInstancesAllParams) SetContext

SetContext adds the context to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the start deployment resource instances all params (not the query body).

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

func (*StartDeploymentResourceInstancesAllParams) SetDeploymentID

func (o *StartDeploymentResourceInstancesAllParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) SetRefID

SetRefID adds the refId to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) SetResourceKind

func (o *StartDeploymentResourceInstancesAllParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) SetTimeout

SetTimeout adds the timeout to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) WithContext

WithContext adds the context to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the start deployment resource instances all params (not the query body).

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

func (*StartDeploymentResourceInstancesAllParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) WithRefID

WithRefID adds the refID to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) WithResourceKind

WithResourceKind adds the resourceKind to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) WithTimeout

WithTimeout adds the timeout to the start deployment resource instances all params

func (*StartDeploymentResourceInstancesAllParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StartDeploymentResourceInstancesAllReader

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

StartDeploymentResourceInstancesAllReader is a Reader for the StartDeploymentResourceInstancesAll structure.

func (*StartDeploymentResourceInstancesAllReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StartDeploymentResourceInstancesAllRetryWith

type StartDeploymentResourceInstancesAllRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesAllRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewStartDeploymentResourceInstancesAllRetryWith

func NewStartDeploymentResourceInstancesAllRetryWith() *StartDeploymentResourceInstancesAllRetryWith

NewStartDeploymentResourceInstancesAllRetryWith creates a StartDeploymentResourceInstancesAllRetryWith with default headers values

func (*StartDeploymentResourceInstancesAllRetryWith) Error

func (*StartDeploymentResourceInstancesAllRetryWith) GetPayload

type StartDeploymentResourceInstancesForbidden

type StartDeploymentResourceInstancesForbidden struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesForbidden describes a response with status code 403, with default header values.

The start maintenance mode command was prohibited for the given Resource. (code: `deployments.instance_update_prohibited_error`)

func NewStartDeploymentResourceInstancesForbidden

func NewStartDeploymentResourceInstancesForbidden() *StartDeploymentResourceInstancesForbidden

NewStartDeploymentResourceInstancesForbidden creates a StartDeploymentResourceInstancesForbidden with default headers values

func (*StartDeploymentResourceInstancesForbidden) Error

func (*StartDeploymentResourceInstancesForbidden) GetPayload

type StartDeploymentResourceInstancesInternalServerError

type StartDeploymentResourceInstancesInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewStartDeploymentResourceInstancesInternalServerError

func NewStartDeploymentResourceInstancesInternalServerError() *StartDeploymentResourceInstancesInternalServerError

NewStartDeploymentResourceInstancesInternalServerError creates a StartDeploymentResourceInstancesInternalServerError with default headers values

func (*StartDeploymentResourceInstancesInternalServerError) Error

func (*StartDeploymentResourceInstancesInternalServerError) GetPayload

type StartDeploymentResourceInstancesNotFound

type StartDeploymentResourceInstancesNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`) * One or more instances of the given resource type are missing. (code: `deployments.instances_missing_on_update_error`)

func NewStartDeploymentResourceInstancesNotFound

func NewStartDeploymentResourceInstancesNotFound() *StartDeploymentResourceInstancesNotFound

NewStartDeploymentResourceInstancesNotFound creates a StartDeploymentResourceInstancesNotFound with default headers values

func (*StartDeploymentResourceInstancesNotFound) Error

func (*StartDeploymentResourceInstancesNotFound) GetPayload

type StartDeploymentResourceInstancesParams

type StartDeploymentResourceInstancesParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* IgnoreMissing.

	   If true and the instance does not exist then quietly proceed to the next instance, otherwise treated as an error
	*/
	IgnoreMissing *bool

	/* InstanceIds.

	   A comma-separated list of instance identifiers.
	*/
	InstanceIds []string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource (one of elasticsearch, kibana or apm).
	*/
	ResourceKind string

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

StartDeploymentResourceInstancesParams contains all the parameters to send to the API endpoint

for the start deployment resource instances operation.

Typically these are written to a http.Request.

func NewStartDeploymentResourceInstancesParams

func NewStartDeploymentResourceInstancesParams() *StartDeploymentResourceInstancesParams

NewStartDeploymentResourceInstancesParams creates a new StartDeploymentResourceInstancesParams 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 NewStartDeploymentResourceInstancesParamsWithContext

func NewStartDeploymentResourceInstancesParamsWithContext(ctx context.Context) *StartDeploymentResourceInstancesParams

NewStartDeploymentResourceInstancesParamsWithContext creates a new StartDeploymentResourceInstancesParams object with the ability to set a context for a request.

func NewStartDeploymentResourceInstancesParamsWithHTTPClient

func NewStartDeploymentResourceInstancesParamsWithHTTPClient(client *http.Client) *StartDeploymentResourceInstancesParams

NewStartDeploymentResourceInstancesParamsWithHTTPClient creates a new StartDeploymentResourceInstancesParams object with the ability to set a custom HTTPClient for a request.

func NewStartDeploymentResourceInstancesParamsWithTimeout

func NewStartDeploymentResourceInstancesParamsWithTimeout(timeout time.Duration) *StartDeploymentResourceInstancesParams

NewStartDeploymentResourceInstancesParamsWithTimeout creates a new StartDeploymentResourceInstancesParams object with the ability to set a timeout on a request.

func (*StartDeploymentResourceInstancesParams) SetContext

SetContext adds the context to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) SetDefaults added in v1.3.0

func (o *StartDeploymentResourceInstancesParams) SetDefaults()

SetDefaults hydrates default values in the start deployment resource instances params (not the query body).

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

func (*StartDeploymentResourceInstancesParams) SetDeploymentID

func (o *StartDeploymentResourceInstancesParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) SetIgnoreMissing

func (o *StartDeploymentResourceInstancesParams) SetIgnoreMissing(ignoreMissing *bool)

SetIgnoreMissing adds the ignoreMissing to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) SetInstanceIds

func (o *StartDeploymentResourceInstancesParams) SetInstanceIds(instanceIds []string)

SetInstanceIds adds the instanceIds to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) SetRefID

SetRefID adds the refId to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) SetResourceKind

func (o *StartDeploymentResourceInstancesParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) SetTimeout

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

SetTimeout adds the timeout to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WithContext

WithContext adds the context to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the start deployment resource instances params (not the query body).

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

func (*StartDeploymentResourceInstancesParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WithIgnoreMissing

WithIgnoreMissing adds the ignoreMissing to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WithInstanceIds

WithInstanceIds adds the instanceIds to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WithRefID

WithRefID adds the refID to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WithResourceKind

WithResourceKind adds the resourceKind to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WithTimeout

WithTimeout adds the timeout to the start deployment resource instances params

func (*StartDeploymentResourceInstancesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StartDeploymentResourceInstancesReader

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

StartDeploymentResourceInstancesReader is a Reader for the StartDeploymentResourceInstances structure.

func (*StartDeploymentResourceInstancesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StartDeploymentResourceInstancesRetryWith

type StartDeploymentResourceInstancesRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceInstancesRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewStartDeploymentResourceInstancesRetryWith

func NewStartDeploymentResourceInstancesRetryWith() *StartDeploymentResourceInstancesRetryWith

NewStartDeploymentResourceInstancesRetryWith creates a StartDeploymentResourceInstancesRetryWith with default headers values

func (*StartDeploymentResourceInstancesRetryWith) Error

func (*StartDeploymentResourceInstancesRetryWith) GetPayload

type StartDeploymentResourceMaintenanceModeAccepted

type StartDeploymentResourceMaintenanceModeAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
StartDeploymentResourceMaintenanceModeAccepted describes a response with status code 202, with default header values.

The start maintenance command was issued successfully.

func NewStartDeploymentResourceMaintenanceModeAccepted

func NewStartDeploymentResourceMaintenanceModeAccepted() *StartDeploymentResourceMaintenanceModeAccepted

NewStartDeploymentResourceMaintenanceModeAccepted creates a StartDeploymentResourceMaintenanceModeAccepted with default headers values

func (*StartDeploymentResourceMaintenanceModeAccepted) Error

func (*StartDeploymentResourceMaintenanceModeAccepted) GetPayload

type StartDeploymentResourceMaintenanceModeForbidden

type StartDeploymentResourceMaintenanceModeForbidden struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceMaintenanceModeForbidden describes a response with status code 403, with default header values.

The start maintenance mode command was prohibited for the given Resource. (code: `deployments.instance_update_prohibited_error`)

func NewStartDeploymentResourceMaintenanceModeForbidden

func NewStartDeploymentResourceMaintenanceModeForbidden() *StartDeploymentResourceMaintenanceModeForbidden

NewStartDeploymentResourceMaintenanceModeForbidden creates a StartDeploymentResourceMaintenanceModeForbidden with default headers values

func (*StartDeploymentResourceMaintenanceModeForbidden) Error

func (*StartDeploymentResourceMaintenanceModeForbidden) GetPayload

type StartDeploymentResourceMaintenanceModeInternalServerError

type StartDeploymentResourceMaintenanceModeInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceMaintenanceModeInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewStartDeploymentResourceMaintenanceModeInternalServerError

func NewStartDeploymentResourceMaintenanceModeInternalServerError() *StartDeploymentResourceMaintenanceModeInternalServerError

NewStartDeploymentResourceMaintenanceModeInternalServerError creates a StartDeploymentResourceMaintenanceModeInternalServerError with default headers values

func (*StartDeploymentResourceMaintenanceModeInternalServerError) Error

func (*StartDeploymentResourceMaintenanceModeInternalServerError) GetPayload

type StartDeploymentResourceMaintenanceModeNotFound

type StartDeploymentResourceMaintenanceModeNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceMaintenanceModeNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`) * One or more instances of the given resource type are missing. (code: `deployments.instances_missing_on_update_error`)

func NewStartDeploymentResourceMaintenanceModeNotFound

func NewStartDeploymentResourceMaintenanceModeNotFound() *StartDeploymentResourceMaintenanceModeNotFound

NewStartDeploymentResourceMaintenanceModeNotFound creates a StartDeploymentResourceMaintenanceModeNotFound with default headers values

func (*StartDeploymentResourceMaintenanceModeNotFound) Error

func (*StartDeploymentResourceMaintenanceModeNotFound) GetPayload

type StartDeploymentResourceMaintenanceModeParams

type StartDeploymentResourceMaintenanceModeParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* IgnoreMissing.

	   If true and the instance does not exist then quietly proceed to the next instance, otherwise treated as an error.
	*/
	IgnoreMissing *bool

	/* InstanceIds.

	   A comma-separated list of instance identifiers.
	*/
	InstanceIds []string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource (one of elasticsearch, kibana or apm).
	*/
	ResourceKind string

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

StartDeploymentResourceMaintenanceModeParams contains all the parameters to send to the API endpoint

for the start deployment resource maintenance mode operation.

Typically these are written to a http.Request.

func NewStartDeploymentResourceMaintenanceModeParams

func NewStartDeploymentResourceMaintenanceModeParams() *StartDeploymentResourceMaintenanceModeParams

NewStartDeploymentResourceMaintenanceModeParams creates a new StartDeploymentResourceMaintenanceModeParams 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 NewStartDeploymentResourceMaintenanceModeParamsWithContext

func NewStartDeploymentResourceMaintenanceModeParamsWithContext(ctx context.Context) *StartDeploymentResourceMaintenanceModeParams

NewStartDeploymentResourceMaintenanceModeParamsWithContext creates a new StartDeploymentResourceMaintenanceModeParams object with the ability to set a context for a request.

func NewStartDeploymentResourceMaintenanceModeParamsWithHTTPClient

func NewStartDeploymentResourceMaintenanceModeParamsWithHTTPClient(client *http.Client) *StartDeploymentResourceMaintenanceModeParams

NewStartDeploymentResourceMaintenanceModeParamsWithHTTPClient creates a new StartDeploymentResourceMaintenanceModeParams object with the ability to set a custom HTTPClient for a request.

func NewStartDeploymentResourceMaintenanceModeParamsWithTimeout

func NewStartDeploymentResourceMaintenanceModeParamsWithTimeout(timeout time.Duration) *StartDeploymentResourceMaintenanceModeParams

NewStartDeploymentResourceMaintenanceModeParamsWithTimeout creates a new StartDeploymentResourceMaintenanceModeParams object with the ability to set a timeout on a request.

func (*StartDeploymentResourceMaintenanceModeParams) SetContext

SetContext adds the context to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the start deployment resource maintenance mode params (not the query body).

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

func (*StartDeploymentResourceMaintenanceModeParams) SetDeploymentID

func (o *StartDeploymentResourceMaintenanceModeParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) SetIgnoreMissing

func (o *StartDeploymentResourceMaintenanceModeParams) SetIgnoreMissing(ignoreMissing *bool)

SetIgnoreMissing adds the ignoreMissing to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) SetInstanceIds

func (o *StartDeploymentResourceMaintenanceModeParams) SetInstanceIds(instanceIds []string)

SetInstanceIds adds the instanceIds to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) SetRefID

SetRefID adds the refId to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) SetResourceKind

func (o *StartDeploymentResourceMaintenanceModeParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) SetTimeout

SetTimeout adds the timeout to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WithContext

WithContext adds the context to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the start deployment resource maintenance mode params (not the query body).

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

func (*StartDeploymentResourceMaintenanceModeParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WithIgnoreMissing

WithIgnoreMissing adds the ignoreMissing to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WithInstanceIds

WithInstanceIds adds the instanceIds to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WithRefID

WithRefID adds the refID to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WithResourceKind

WithResourceKind adds the resourceKind to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WithTimeout

WithTimeout adds the timeout to the start deployment resource maintenance mode params

func (*StartDeploymentResourceMaintenanceModeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StartDeploymentResourceMaintenanceModeReader

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

StartDeploymentResourceMaintenanceModeReader is a Reader for the StartDeploymentResourceMaintenanceMode structure.

func (*StartDeploymentResourceMaintenanceModeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StartDeploymentResourceMaintenanceModeRetryWith

type StartDeploymentResourceMaintenanceModeRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StartDeploymentResourceMaintenanceModeRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewStartDeploymentResourceMaintenanceModeRetryWith

func NewStartDeploymentResourceMaintenanceModeRetryWith() *StartDeploymentResourceMaintenanceModeRetryWith

NewStartDeploymentResourceMaintenanceModeRetryWith creates a StartDeploymentResourceMaintenanceModeRetryWith with default headers values

func (*StartDeploymentResourceMaintenanceModeRetryWith) Error

func (*StartDeploymentResourceMaintenanceModeRetryWith) GetPayload

type StopDeploymentResourceInstancesAccepted

type StopDeploymentResourceInstancesAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
StopDeploymentResourceInstancesAccepted describes a response with status code 202, with default header values.

The stop command was issued successfully.

func NewStopDeploymentResourceInstancesAccepted

func NewStopDeploymentResourceInstancesAccepted() *StopDeploymentResourceInstancesAccepted

NewStopDeploymentResourceInstancesAccepted creates a StopDeploymentResourceInstancesAccepted with default headers values

func (*StopDeploymentResourceInstancesAccepted) Error

func (*StopDeploymentResourceInstancesAccepted) GetPayload

type StopDeploymentResourceInstancesAllAccepted

type StopDeploymentResourceInstancesAllAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
StopDeploymentResourceInstancesAllAccepted describes a response with status code 202, with default header values.

The stop command was issued successfully.

func NewStopDeploymentResourceInstancesAllAccepted

func NewStopDeploymentResourceInstancesAllAccepted() *StopDeploymentResourceInstancesAllAccepted

NewStopDeploymentResourceInstancesAllAccepted creates a StopDeploymentResourceInstancesAllAccepted with default headers values

func (*StopDeploymentResourceInstancesAllAccepted) Error

func (*StopDeploymentResourceInstancesAllAccepted) GetPayload

type StopDeploymentResourceInstancesAllForbidden

type StopDeploymentResourceInstancesAllForbidden struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesAllForbidden describes a response with status code 403, with default header values.

The stop maintenance mode command was prohibited for the given Resource. (code: `deployments.instance_update_prohibited_error`)

func NewStopDeploymentResourceInstancesAllForbidden

func NewStopDeploymentResourceInstancesAllForbidden() *StopDeploymentResourceInstancesAllForbidden

NewStopDeploymentResourceInstancesAllForbidden creates a StopDeploymentResourceInstancesAllForbidden with default headers values

func (*StopDeploymentResourceInstancesAllForbidden) Error

func (*StopDeploymentResourceInstancesAllForbidden) GetPayload

type StopDeploymentResourceInstancesAllInternalServerError

type StopDeploymentResourceInstancesAllInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesAllInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewStopDeploymentResourceInstancesAllInternalServerError

func NewStopDeploymentResourceInstancesAllInternalServerError() *StopDeploymentResourceInstancesAllInternalServerError

NewStopDeploymentResourceInstancesAllInternalServerError creates a StopDeploymentResourceInstancesAllInternalServerError with default headers values

func (*StopDeploymentResourceInstancesAllInternalServerError) Error

func (*StopDeploymentResourceInstancesAllInternalServerError) GetPayload

type StopDeploymentResourceInstancesAllMaintenanceModeAccepted

type StopDeploymentResourceInstancesAllMaintenanceModeAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
StopDeploymentResourceInstancesAllMaintenanceModeAccepted describes a response with status code 202, with default header values.

The stop maintenance mode command was issued successfully.

func NewStopDeploymentResourceInstancesAllMaintenanceModeAccepted

func NewStopDeploymentResourceInstancesAllMaintenanceModeAccepted() *StopDeploymentResourceInstancesAllMaintenanceModeAccepted

NewStopDeploymentResourceInstancesAllMaintenanceModeAccepted creates a StopDeploymentResourceInstancesAllMaintenanceModeAccepted with default headers values

func (*StopDeploymentResourceInstancesAllMaintenanceModeAccepted) Error

func (*StopDeploymentResourceInstancesAllMaintenanceModeAccepted) GetPayload

type StopDeploymentResourceInstancesAllMaintenanceModeForbidden

type StopDeploymentResourceInstancesAllMaintenanceModeForbidden struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesAllMaintenanceModeForbidden describes a response with status code 403, with default header values.

The stop maintenance mode command was prohibited for the given Resource. (code: `deployments.instance_update_prohibited_error`)

func NewStopDeploymentResourceInstancesAllMaintenanceModeForbidden

func NewStopDeploymentResourceInstancesAllMaintenanceModeForbidden() *StopDeploymentResourceInstancesAllMaintenanceModeForbidden

NewStopDeploymentResourceInstancesAllMaintenanceModeForbidden creates a StopDeploymentResourceInstancesAllMaintenanceModeForbidden with default headers values

func (*StopDeploymentResourceInstancesAllMaintenanceModeForbidden) Error

func (*StopDeploymentResourceInstancesAllMaintenanceModeForbidden) GetPayload

type StopDeploymentResourceInstancesAllMaintenanceModeInternalServerError

type StopDeploymentResourceInstancesAllMaintenanceModeInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesAllMaintenanceModeInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewStopDeploymentResourceInstancesAllMaintenanceModeInternalServerError

func NewStopDeploymentResourceInstancesAllMaintenanceModeInternalServerError() *StopDeploymentResourceInstancesAllMaintenanceModeInternalServerError

NewStopDeploymentResourceInstancesAllMaintenanceModeInternalServerError creates a StopDeploymentResourceInstancesAllMaintenanceModeInternalServerError with default headers values

func (*StopDeploymentResourceInstancesAllMaintenanceModeInternalServerError) Error

func (*StopDeploymentResourceInstancesAllMaintenanceModeInternalServerError) GetPayload

type StopDeploymentResourceInstancesAllMaintenanceModeNotFound

type StopDeploymentResourceInstancesAllMaintenanceModeNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesAllMaintenanceModeNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`) * One or more instances of the given resource type are missing. (code: `deployments.instances_missing_on_update_error`)

func NewStopDeploymentResourceInstancesAllMaintenanceModeNotFound

func NewStopDeploymentResourceInstancesAllMaintenanceModeNotFound() *StopDeploymentResourceInstancesAllMaintenanceModeNotFound

NewStopDeploymentResourceInstancesAllMaintenanceModeNotFound creates a StopDeploymentResourceInstancesAllMaintenanceModeNotFound with default headers values

func (*StopDeploymentResourceInstancesAllMaintenanceModeNotFound) Error

func (*StopDeploymentResourceInstancesAllMaintenanceModeNotFound) GetPayload

type StopDeploymentResourceInstancesAllMaintenanceModeParams

type StopDeploymentResourceInstancesAllMaintenanceModeParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource (one of elasticsearch, kibana or apm).
	*/
	ResourceKind string

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

StopDeploymentResourceInstancesAllMaintenanceModeParams contains all the parameters to send to the API endpoint

for the stop deployment resource instances all maintenance mode operation.

Typically these are written to a http.Request.

func NewStopDeploymentResourceInstancesAllMaintenanceModeParams

func NewStopDeploymentResourceInstancesAllMaintenanceModeParams() *StopDeploymentResourceInstancesAllMaintenanceModeParams

NewStopDeploymentResourceInstancesAllMaintenanceModeParams creates a new StopDeploymentResourceInstancesAllMaintenanceModeParams 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 NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithContext

func NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithContext(ctx context.Context) *StopDeploymentResourceInstancesAllMaintenanceModeParams

NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithContext creates a new StopDeploymentResourceInstancesAllMaintenanceModeParams object with the ability to set a context for a request.

func NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithHTTPClient

func NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithHTTPClient(client *http.Client) *StopDeploymentResourceInstancesAllMaintenanceModeParams

NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithHTTPClient creates a new StopDeploymentResourceInstancesAllMaintenanceModeParams object with the ability to set a custom HTTPClient for a request.

func NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithTimeout

func NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithTimeout(timeout time.Duration) *StopDeploymentResourceInstancesAllMaintenanceModeParams

NewStopDeploymentResourceInstancesAllMaintenanceModeParamsWithTimeout creates a new StopDeploymentResourceInstancesAllMaintenanceModeParams object with the ability to set a timeout on a request.

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) SetContext

SetContext adds the context to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the stop deployment resource instances all maintenance mode params (not the query body).

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

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) SetDeploymentID

func (o *StopDeploymentResourceInstancesAllMaintenanceModeParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) SetRefID

SetRefID adds the refId to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) SetResourceKind

func (o *StopDeploymentResourceInstancesAllMaintenanceModeParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) SetTimeout

SetTimeout adds the timeout to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) WithContext

WithContext adds the context to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the stop deployment resource instances all maintenance mode params (not the query body).

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

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) WithRefID

WithRefID adds the refID to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) WithResourceKind

WithResourceKind adds the resourceKind to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) WithTimeout

WithTimeout adds the timeout to the stop deployment resource instances all maintenance mode params

func (*StopDeploymentResourceInstancesAllMaintenanceModeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StopDeploymentResourceInstancesAllMaintenanceModeReader

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

StopDeploymentResourceInstancesAllMaintenanceModeReader is a Reader for the StopDeploymentResourceInstancesAllMaintenanceMode structure.

func (*StopDeploymentResourceInstancesAllMaintenanceModeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StopDeploymentResourceInstancesAllMaintenanceModeRetryWith

type StopDeploymentResourceInstancesAllMaintenanceModeRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesAllMaintenanceModeRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewStopDeploymentResourceInstancesAllMaintenanceModeRetryWith

func NewStopDeploymentResourceInstancesAllMaintenanceModeRetryWith() *StopDeploymentResourceInstancesAllMaintenanceModeRetryWith

NewStopDeploymentResourceInstancesAllMaintenanceModeRetryWith creates a StopDeploymentResourceInstancesAllMaintenanceModeRetryWith with default headers values

func (*StopDeploymentResourceInstancesAllMaintenanceModeRetryWith) Error

func (*StopDeploymentResourceInstancesAllMaintenanceModeRetryWith) GetPayload

type StopDeploymentResourceInstancesAllNotFound

type StopDeploymentResourceInstancesAllNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesAllNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`) * One or more instances of the given resource type are missing. (code: `deployments.instances_missing_on_update_error`)

func NewStopDeploymentResourceInstancesAllNotFound

func NewStopDeploymentResourceInstancesAllNotFound() *StopDeploymentResourceInstancesAllNotFound

NewStopDeploymentResourceInstancesAllNotFound creates a StopDeploymentResourceInstancesAllNotFound with default headers values

func (*StopDeploymentResourceInstancesAllNotFound) Error

func (*StopDeploymentResourceInstancesAllNotFound) GetPayload

type StopDeploymentResourceInstancesAllParams

type StopDeploymentResourceInstancesAllParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource (one of elasticsearch, kibana or apm).
	*/
	ResourceKind string

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

StopDeploymentResourceInstancesAllParams contains all the parameters to send to the API endpoint

for the stop deployment resource instances all operation.

Typically these are written to a http.Request.

func NewStopDeploymentResourceInstancesAllParams

func NewStopDeploymentResourceInstancesAllParams() *StopDeploymentResourceInstancesAllParams

NewStopDeploymentResourceInstancesAllParams creates a new StopDeploymentResourceInstancesAllParams 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 NewStopDeploymentResourceInstancesAllParamsWithContext

func NewStopDeploymentResourceInstancesAllParamsWithContext(ctx context.Context) *StopDeploymentResourceInstancesAllParams

NewStopDeploymentResourceInstancesAllParamsWithContext creates a new StopDeploymentResourceInstancesAllParams object with the ability to set a context for a request.

func NewStopDeploymentResourceInstancesAllParamsWithHTTPClient

func NewStopDeploymentResourceInstancesAllParamsWithHTTPClient(client *http.Client) *StopDeploymentResourceInstancesAllParams

NewStopDeploymentResourceInstancesAllParamsWithHTTPClient creates a new StopDeploymentResourceInstancesAllParams object with the ability to set a custom HTTPClient for a request.

func NewStopDeploymentResourceInstancesAllParamsWithTimeout

func NewStopDeploymentResourceInstancesAllParamsWithTimeout(timeout time.Duration) *StopDeploymentResourceInstancesAllParams

NewStopDeploymentResourceInstancesAllParamsWithTimeout creates a new StopDeploymentResourceInstancesAllParams object with the ability to set a timeout on a request.

func (*StopDeploymentResourceInstancesAllParams) SetContext

SetContext adds the context to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the stop deployment resource instances all params (not the query body).

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

func (*StopDeploymentResourceInstancesAllParams) SetDeploymentID

func (o *StopDeploymentResourceInstancesAllParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) SetRefID

SetRefID adds the refId to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) SetResourceKind

func (o *StopDeploymentResourceInstancesAllParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) SetTimeout

SetTimeout adds the timeout to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) WithContext

WithContext adds the context to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the stop deployment resource instances all params (not the query body).

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

func (*StopDeploymentResourceInstancesAllParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) WithRefID

WithRefID adds the refID to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) WithResourceKind

WithResourceKind adds the resourceKind to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) WithTimeout

WithTimeout adds the timeout to the stop deployment resource instances all params

func (*StopDeploymentResourceInstancesAllParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StopDeploymentResourceInstancesAllReader

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

StopDeploymentResourceInstancesAllReader is a Reader for the StopDeploymentResourceInstancesAll structure.

func (*StopDeploymentResourceInstancesAllReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StopDeploymentResourceInstancesAllRetryWith

type StopDeploymentResourceInstancesAllRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesAllRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewStopDeploymentResourceInstancesAllRetryWith

func NewStopDeploymentResourceInstancesAllRetryWith() *StopDeploymentResourceInstancesAllRetryWith

NewStopDeploymentResourceInstancesAllRetryWith creates a StopDeploymentResourceInstancesAllRetryWith with default headers values

func (*StopDeploymentResourceInstancesAllRetryWith) Error

func (*StopDeploymentResourceInstancesAllRetryWith) GetPayload

type StopDeploymentResourceInstancesForbidden

type StopDeploymentResourceInstancesForbidden struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesForbidden describes a response with status code 403, with default header values.

The start maintenance mode command was prohibited for the given Resource. (code: `deployments.instance_update_prohibited_error`)

func NewStopDeploymentResourceInstancesForbidden

func NewStopDeploymentResourceInstancesForbidden() *StopDeploymentResourceInstancesForbidden

NewStopDeploymentResourceInstancesForbidden creates a StopDeploymentResourceInstancesForbidden with default headers values

func (*StopDeploymentResourceInstancesForbidden) Error

func (*StopDeploymentResourceInstancesForbidden) GetPayload

type StopDeploymentResourceInstancesInternalServerError

type StopDeploymentResourceInstancesInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewStopDeploymentResourceInstancesInternalServerError

func NewStopDeploymentResourceInstancesInternalServerError() *StopDeploymentResourceInstancesInternalServerError

NewStopDeploymentResourceInstancesInternalServerError creates a StopDeploymentResourceInstancesInternalServerError with default headers values

func (*StopDeploymentResourceInstancesInternalServerError) Error

func (*StopDeploymentResourceInstancesInternalServerError) GetPayload

type StopDeploymentResourceInstancesNotFound

type StopDeploymentResourceInstancesNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`) * One or more instances of the given resource type are missing. (code: `deployments.instances_missing_on_update_error`)

func NewStopDeploymentResourceInstancesNotFound

func NewStopDeploymentResourceInstancesNotFound() *StopDeploymentResourceInstancesNotFound

NewStopDeploymentResourceInstancesNotFound creates a StopDeploymentResourceInstancesNotFound with default headers values

func (*StopDeploymentResourceInstancesNotFound) Error

func (*StopDeploymentResourceInstancesNotFound) GetPayload

type StopDeploymentResourceInstancesParams

type StopDeploymentResourceInstancesParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* IgnoreMissing.

	   If true and the instance does not exist then quietly proceed to the next instance, otherwise treated as an error.
	*/
	IgnoreMissing *bool

	/* InstanceIds.

	   A comma-separated list of instance identifiers.
	*/
	InstanceIds []string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource (one of elasticsearch, kibana or apm).
	*/
	ResourceKind string

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

StopDeploymentResourceInstancesParams contains all the parameters to send to the API endpoint

for the stop deployment resource instances operation.

Typically these are written to a http.Request.

func NewStopDeploymentResourceInstancesParams

func NewStopDeploymentResourceInstancesParams() *StopDeploymentResourceInstancesParams

NewStopDeploymentResourceInstancesParams creates a new StopDeploymentResourceInstancesParams 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 NewStopDeploymentResourceInstancesParamsWithContext

func NewStopDeploymentResourceInstancesParamsWithContext(ctx context.Context) *StopDeploymentResourceInstancesParams

NewStopDeploymentResourceInstancesParamsWithContext creates a new StopDeploymentResourceInstancesParams object with the ability to set a context for a request.

func NewStopDeploymentResourceInstancesParamsWithHTTPClient

func NewStopDeploymentResourceInstancesParamsWithHTTPClient(client *http.Client) *StopDeploymentResourceInstancesParams

NewStopDeploymentResourceInstancesParamsWithHTTPClient creates a new StopDeploymentResourceInstancesParams object with the ability to set a custom HTTPClient for a request.

func NewStopDeploymentResourceInstancesParamsWithTimeout

func NewStopDeploymentResourceInstancesParamsWithTimeout(timeout time.Duration) *StopDeploymentResourceInstancesParams

NewStopDeploymentResourceInstancesParamsWithTimeout creates a new StopDeploymentResourceInstancesParams object with the ability to set a timeout on a request.

func (*StopDeploymentResourceInstancesParams) SetContext

SetContext adds the context to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) SetDefaults added in v1.3.0

func (o *StopDeploymentResourceInstancesParams) SetDefaults()

SetDefaults hydrates default values in the stop deployment resource instances params (not the query body).

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

func (*StopDeploymentResourceInstancesParams) SetDeploymentID

func (o *StopDeploymentResourceInstancesParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) SetIgnoreMissing

func (o *StopDeploymentResourceInstancesParams) SetIgnoreMissing(ignoreMissing *bool)

SetIgnoreMissing adds the ignoreMissing to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) SetInstanceIds

func (o *StopDeploymentResourceInstancesParams) SetInstanceIds(instanceIds []string)

SetInstanceIds adds the instanceIds to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) SetRefID

func (o *StopDeploymentResourceInstancesParams) SetRefID(refID string)

SetRefID adds the refId to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) SetResourceKind

func (o *StopDeploymentResourceInstancesParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) SetTimeout

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

SetTimeout adds the timeout to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WithContext

WithContext adds the context to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the stop deployment resource instances params (not the query body).

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

func (*StopDeploymentResourceInstancesParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WithIgnoreMissing

WithIgnoreMissing adds the ignoreMissing to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WithInstanceIds

WithInstanceIds adds the instanceIds to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WithRefID

WithRefID adds the refID to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WithResourceKind

WithResourceKind adds the resourceKind to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WithTimeout

WithTimeout adds the timeout to the stop deployment resource instances params

func (*StopDeploymentResourceInstancesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StopDeploymentResourceInstancesReader

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

StopDeploymentResourceInstancesReader is a Reader for the StopDeploymentResourceInstances structure.

func (*StopDeploymentResourceInstancesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StopDeploymentResourceInstancesRetryWith

type StopDeploymentResourceInstancesRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceInstancesRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewStopDeploymentResourceInstancesRetryWith

func NewStopDeploymentResourceInstancesRetryWith() *StopDeploymentResourceInstancesRetryWith

NewStopDeploymentResourceInstancesRetryWith creates a StopDeploymentResourceInstancesRetryWith with default headers values

func (*StopDeploymentResourceInstancesRetryWith) Error

func (*StopDeploymentResourceInstancesRetryWith) GetPayload

type StopDeploymentResourceMaintenanceModeAccepted

type StopDeploymentResourceMaintenanceModeAccepted struct {
	Payload *models.DeploymentResourceCommandResponse
}
StopDeploymentResourceMaintenanceModeAccepted describes a response with status code 202, with default header values.

The stop maintenance mode command was issued successfully.

func NewStopDeploymentResourceMaintenanceModeAccepted

func NewStopDeploymentResourceMaintenanceModeAccepted() *StopDeploymentResourceMaintenanceModeAccepted

NewStopDeploymentResourceMaintenanceModeAccepted creates a StopDeploymentResourceMaintenanceModeAccepted with default headers values

func (*StopDeploymentResourceMaintenanceModeAccepted) Error

func (*StopDeploymentResourceMaintenanceModeAccepted) GetPayload

type StopDeploymentResourceMaintenanceModeForbidden

type StopDeploymentResourceMaintenanceModeForbidden struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceMaintenanceModeForbidden describes a response with status code 403, with default header values.

The stop maintenance mode command was prohibited for the given Resource. (code: `deployments.instance_update_prohibited_error`)

func NewStopDeploymentResourceMaintenanceModeForbidden

func NewStopDeploymentResourceMaintenanceModeForbidden() *StopDeploymentResourceMaintenanceModeForbidden

NewStopDeploymentResourceMaintenanceModeForbidden creates a StopDeploymentResourceMaintenanceModeForbidden with default headers values

func (*StopDeploymentResourceMaintenanceModeForbidden) Error

func (*StopDeploymentResourceMaintenanceModeForbidden) GetPayload

type StopDeploymentResourceMaintenanceModeInternalServerError

type StopDeploymentResourceMaintenanceModeInternalServerError struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceMaintenanceModeInternalServerError describes a response with status code 500, with default header values.

A Resource that was previously stored no longer exists. (code: `deployments.deployment_resource_no_longer_exists`)

func NewStopDeploymentResourceMaintenanceModeInternalServerError

func NewStopDeploymentResourceMaintenanceModeInternalServerError() *StopDeploymentResourceMaintenanceModeInternalServerError

NewStopDeploymentResourceMaintenanceModeInternalServerError creates a StopDeploymentResourceMaintenanceModeInternalServerError with default headers values

func (*StopDeploymentResourceMaintenanceModeInternalServerError) Error

func (*StopDeploymentResourceMaintenanceModeInternalServerError) GetPayload

type StopDeploymentResourceMaintenanceModeNotFound

type StopDeploymentResourceMaintenanceModeNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceMaintenanceModeNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`) * One or more instances of the given resource type are missing. (code: `deployments.instances_missing_on_update_error`)

func NewStopDeploymentResourceMaintenanceModeNotFound

func NewStopDeploymentResourceMaintenanceModeNotFound() *StopDeploymentResourceMaintenanceModeNotFound

NewStopDeploymentResourceMaintenanceModeNotFound creates a StopDeploymentResourceMaintenanceModeNotFound with default headers values

func (*StopDeploymentResourceMaintenanceModeNotFound) Error

func (*StopDeploymentResourceMaintenanceModeNotFound) GetPayload

type StopDeploymentResourceMaintenanceModeParams

type StopDeploymentResourceMaintenanceModeParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* IgnoreMissing.

	   If true and the instance does not exist then quietly proceed to the next instance, otherwise treated as an error.
	*/
	IgnoreMissing *bool

	/* InstanceIds.

	   A comma-separated list of instance identifiers.
	*/
	InstanceIds []string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* ResourceKind.

	   The kind of resource (one of elasticsearch, kibana or apm).
	*/
	ResourceKind string

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

StopDeploymentResourceMaintenanceModeParams contains all the parameters to send to the API endpoint

for the stop deployment resource maintenance mode operation.

Typically these are written to a http.Request.

func NewStopDeploymentResourceMaintenanceModeParams

func NewStopDeploymentResourceMaintenanceModeParams() *StopDeploymentResourceMaintenanceModeParams

NewStopDeploymentResourceMaintenanceModeParams creates a new StopDeploymentResourceMaintenanceModeParams 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 NewStopDeploymentResourceMaintenanceModeParamsWithContext

func NewStopDeploymentResourceMaintenanceModeParamsWithContext(ctx context.Context) *StopDeploymentResourceMaintenanceModeParams

NewStopDeploymentResourceMaintenanceModeParamsWithContext creates a new StopDeploymentResourceMaintenanceModeParams object with the ability to set a context for a request.

func NewStopDeploymentResourceMaintenanceModeParamsWithHTTPClient

func NewStopDeploymentResourceMaintenanceModeParamsWithHTTPClient(client *http.Client) *StopDeploymentResourceMaintenanceModeParams

NewStopDeploymentResourceMaintenanceModeParamsWithHTTPClient creates a new StopDeploymentResourceMaintenanceModeParams object with the ability to set a custom HTTPClient for a request.

func NewStopDeploymentResourceMaintenanceModeParamsWithTimeout

func NewStopDeploymentResourceMaintenanceModeParamsWithTimeout(timeout time.Duration) *StopDeploymentResourceMaintenanceModeParams

NewStopDeploymentResourceMaintenanceModeParamsWithTimeout creates a new StopDeploymentResourceMaintenanceModeParams object with the ability to set a timeout on a request.

func (*StopDeploymentResourceMaintenanceModeParams) SetContext

SetContext adds the context to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the stop deployment resource maintenance mode params (not the query body).

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

func (*StopDeploymentResourceMaintenanceModeParams) SetDeploymentID

func (o *StopDeploymentResourceMaintenanceModeParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) SetIgnoreMissing

func (o *StopDeploymentResourceMaintenanceModeParams) SetIgnoreMissing(ignoreMissing *bool)

SetIgnoreMissing adds the ignoreMissing to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) SetInstanceIds

func (o *StopDeploymentResourceMaintenanceModeParams) SetInstanceIds(instanceIds []string)

SetInstanceIds adds the instanceIds to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) SetRefID

SetRefID adds the refId to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) SetResourceKind

func (o *StopDeploymentResourceMaintenanceModeParams) SetResourceKind(resourceKind string)

SetResourceKind adds the resourceKind to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) SetTimeout

SetTimeout adds the timeout to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WithContext

WithContext adds the context to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the stop deployment resource maintenance mode params (not the query body).

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

func (*StopDeploymentResourceMaintenanceModeParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WithIgnoreMissing

WithIgnoreMissing adds the ignoreMissing to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WithInstanceIds

WithInstanceIds adds the instanceIds to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WithRefID

WithRefID adds the refID to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WithResourceKind

WithResourceKind adds the resourceKind to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WithTimeout

WithTimeout adds the timeout to the stop deployment resource maintenance mode params

func (*StopDeploymentResourceMaintenanceModeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StopDeploymentResourceMaintenanceModeReader

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

StopDeploymentResourceMaintenanceModeReader is a Reader for the StopDeploymentResourceMaintenanceMode structure.

func (*StopDeploymentResourceMaintenanceModeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StopDeploymentResourceMaintenanceModeRetryWith

type StopDeploymentResourceMaintenanceModeRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
StopDeploymentResourceMaintenanceModeRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewStopDeploymentResourceMaintenanceModeRetryWith

func NewStopDeploymentResourceMaintenanceModeRetryWith() *StopDeploymentResourceMaintenanceModeRetryWith

NewStopDeploymentResourceMaintenanceModeRetryWith creates a StopDeploymentResourceMaintenanceModeRetryWith with default headers values

func (*StopDeploymentResourceMaintenanceModeRetryWith) Error

func (*StopDeploymentResourceMaintenanceModeRetryWith) GetPayload

type UpdateDeploymentBadRequest

type UpdateDeploymentBadRequest struct {
	Payload *models.BasicFailedReply
}
UpdateDeploymentBadRequest describes a response with status code 400, with default header values.

The deployment request had errors.

func NewUpdateDeploymentBadRequest

func NewUpdateDeploymentBadRequest() *UpdateDeploymentBadRequest

NewUpdateDeploymentBadRequest creates a UpdateDeploymentBadRequest with default headers values

func (*UpdateDeploymentBadRequest) Error

func (*UpdateDeploymentBadRequest) GetPayload

type UpdateDeploymentNotFound

type UpdateDeploymentNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
UpdateDeploymentNotFound describes a response with status code 404, with default header values.

The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

func NewUpdateDeploymentNotFound

func NewUpdateDeploymentNotFound() *UpdateDeploymentNotFound

NewUpdateDeploymentNotFound creates a UpdateDeploymentNotFound with default headers values

func (*UpdateDeploymentNotFound) Error

func (o *UpdateDeploymentNotFound) Error() string

func (*UpdateDeploymentNotFound) GetPayload

type UpdateDeploymentOK

type UpdateDeploymentOK struct {

	/* The date-time when the resource was created (ISO format relative to UTC)
	 */
	XCloudResourceCreated string

	/* The date-time when the resource was last modified (ISO format relative to UTC)
	 */
	XCloudResourceLastModified string

	/* The resource version, which is used to avoid update conflicts with concurrent operations
	 */
	XCloudResourceVersion string

	Payload *models.DeploymentUpdateResponse
}
UpdateDeploymentOK describes a response with status code 200, with default header values.

The request was valid and the deployment was updated.

func NewUpdateDeploymentOK

func NewUpdateDeploymentOK() *UpdateDeploymentOK

NewUpdateDeploymentOK creates a UpdateDeploymentOK with default headers values

func (*UpdateDeploymentOK) Error

func (o *UpdateDeploymentOK) Error() string

func (*UpdateDeploymentOK) GetPayload

type UpdateDeploymentParams

type UpdateDeploymentParams struct {

	/* Body.

	   The deployment definition
	*/
	Body *models.DeploymentUpdateRequest

	/* DeploymentID.

	   Identifier for the Deployment
	*/
	DeploymentID string

	/* HidePrunedOrphans.

	   Whether or not to hide orphaned resources that were shut down (relevant if prune on the request is true)
	*/
	HidePrunedOrphans *bool

	/* SkipSnapshot.

	   Whether or not to skip snapshots before shutting down orphaned resources (relevant if prune on the request is true)
	*/
	SkipSnapshot *bool

	/* ValidateOnly.

	   If true, will just validate the Deployment definition but will not perform the update
	*/
	ValidateOnly *bool

	/* Version.

	   If specified then checks for conflicts against the version stored in the persistent store (returned in 'x-cloud-resource-version' of the GET request)
	*/
	Version *string

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

UpdateDeploymentParams contains all the parameters to send to the API endpoint

for the update deployment operation.

Typically these are written to a http.Request.

func NewUpdateDeploymentParams

func NewUpdateDeploymentParams() *UpdateDeploymentParams

NewUpdateDeploymentParams creates a new UpdateDeploymentParams 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 NewUpdateDeploymentParamsWithContext

func NewUpdateDeploymentParamsWithContext(ctx context.Context) *UpdateDeploymentParams

NewUpdateDeploymentParamsWithContext creates a new UpdateDeploymentParams object with the ability to set a context for a request.

func NewUpdateDeploymentParamsWithHTTPClient

func NewUpdateDeploymentParamsWithHTTPClient(client *http.Client) *UpdateDeploymentParams

NewUpdateDeploymentParamsWithHTTPClient creates a new UpdateDeploymentParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateDeploymentParamsWithTimeout

func NewUpdateDeploymentParamsWithTimeout(timeout time.Duration) *UpdateDeploymentParams

NewUpdateDeploymentParamsWithTimeout creates a new UpdateDeploymentParams object with the ability to set a timeout on a request.

func (*UpdateDeploymentParams) SetBody

SetBody adds the body to the update deployment params

func (*UpdateDeploymentParams) SetContext

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

SetContext adds the context to the update deployment params

func (*UpdateDeploymentParams) SetDefaults added in v1.3.0

func (o *UpdateDeploymentParams) SetDefaults()

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

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

func (*UpdateDeploymentParams) SetDeploymentID

func (o *UpdateDeploymentParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the update deployment params

func (*UpdateDeploymentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update deployment params

func (*UpdateDeploymentParams) SetHidePrunedOrphans

func (o *UpdateDeploymentParams) SetHidePrunedOrphans(hidePrunedOrphans *bool)

SetHidePrunedOrphans adds the hidePrunedOrphans to the update deployment params

func (*UpdateDeploymentParams) SetSkipSnapshot

func (o *UpdateDeploymentParams) SetSkipSnapshot(skipSnapshot *bool)

SetSkipSnapshot adds the skipSnapshot to the update deployment params

func (*UpdateDeploymentParams) SetTimeout

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

SetTimeout adds the timeout to the update deployment params

func (*UpdateDeploymentParams) SetValidateOnly

func (o *UpdateDeploymentParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the update deployment params

func (*UpdateDeploymentParams) SetVersion

func (o *UpdateDeploymentParams) SetVersion(version *string)

SetVersion adds the version to the update deployment params

func (*UpdateDeploymentParams) WithBody

WithBody adds the body to the update deployment params

func (*UpdateDeploymentParams) WithContext

WithContext adds the context to the update deployment params

func (*UpdateDeploymentParams) WithDefaults added in v1.3.0

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

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

func (*UpdateDeploymentParams) WithDeploymentID

func (o *UpdateDeploymentParams) WithDeploymentID(deploymentID string) *UpdateDeploymentParams

WithDeploymentID adds the deploymentID to the update deployment params

func (*UpdateDeploymentParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update deployment params

func (*UpdateDeploymentParams) WithHidePrunedOrphans

func (o *UpdateDeploymentParams) WithHidePrunedOrphans(hidePrunedOrphans *bool) *UpdateDeploymentParams

WithHidePrunedOrphans adds the hidePrunedOrphans to the update deployment params

func (*UpdateDeploymentParams) WithSkipSnapshot

func (o *UpdateDeploymentParams) WithSkipSnapshot(skipSnapshot *bool) *UpdateDeploymentParams

WithSkipSnapshot adds the skipSnapshot to the update deployment params

func (*UpdateDeploymentParams) WithTimeout

WithTimeout adds the timeout to the update deployment params

func (*UpdateDeploymentParams) WithValidateOnly

func (o *UpdateDeploymentParams) WithValidateOnly(validateOnly *bool) *UpdateDeploymentParams

WithValidateOnly adds the validateOnly to the update deployment params

func (*UpdateDeploymentParams) WithVersion

func (o *UpdateDeploymentParams) WithVersion(version *string) *UpdateDeploymentParams

WithVersion adds the version to the update deployment params

func (*UpdateDeploymentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateDeploymentReader

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

UpdateDeploymentReader is a Reader for the UpdateDeployment structure.

func (*UpdateDeploymentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateDeploymentUnauthorized

type UpdateDeploymentUnauthorized struct {
	Payload *models.BasicFailedReply
}
UpdateDeploymentUnauthorized describes a response with status code 401, with default header values.

You are not authorized to perform this action.

func NewUpdateDeploymentUnauthorized

func NewUpdateDeploymentUnauthorized() *UpdateDeploymentUnauthorized

NewUpdateDeploymentUnauthorized creates a UpdateDeploymentUnauthorized with default headers values

func (*UpdateDeploymentUnauthorized) Error

func (*UpdateDeploymentUnauthorized) GetPayload

type UpgradeDeploymentStatelessResourceAccepted

type UpgradeDeploymentStatelessResourceAccepted struct {
	Payload *models.DeploymentResourceUpgradeResponse
}
UpgradeDeploymentStatelessResourceAccepted describes a response with status code 202, with default header values.

The upgrade command was issued successfully, use the "GET" command on the /{cluster_id} resource to monitor progress

func NewUpgradeDeploymentStatelessResourceAccepted

func NewUpgradeDeploymentStatelessResourceAccepted() *UpgradeDeploymentStatelessResourceAccepted

NewUpgradeDeploymentStatelessResourceAccepted creates a UpgradeDeploymentStatelessResourceAccepted with default headers values

func (*UpgradeDeploymentStatelessResourceAccepted) Error

func (*UpgradeDeploymentStatelessResourceAccepted) GetPayload

type UpgradeDeploymentStatelessResourceNotFound

type UpgradeDeploymentStatelessResourceNotFound struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
UpgradeDeploymentStatelessResourceNotFound describes a response with status code 404, with default header values.

* The Deployment specified by {deployment_id} cannot be found. (code: `deployments.deployment_not_found`)

* The Resource specified by {ref_id} cannot be found. (code: `deployments.deployment_resource_not_found`)

func NewUpgradeDeploymentStatelessResourceNotFound

func NewUpgradeDeploymentStatelessResourceNotFound() *UpgradeDeploymentStatelessResourceNotFound

NewUpgradeDeploymentStatelessResourceNotFound creates a UpgradeDeploymentStatelessResourceNotFound with default headers values

func (*UpgradeDeploymentStatelessResourceNotFound) Error

func (*UpgradeDeploymentStatelessResourceNotFound) GetPayload

type UpgradeDeploymentStatelessResourceParams

type UpgradeDeploymentStatelessResourceParams struct {

	/* DeploymentID.

	   Identifier for the Deployment.
	*/
	DeploymentID string

	/* RefID.

	   User-specified RefId for the Resource.
	*/
	RefID string

	/* StatelessResourceKind.

	   The kind of stateless resource
	*/
	StatelessResourceKind string

	/* ValidateOnly.

	   When `true`, returns the update version without performing the upgrade
	*/
	ValidateOnly *bool

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

UpgradeDeploymentStatelessResourceParams contains all the parameters to send to the API endpoint

for the upgrade deployment stateless resource operation.

Typically these are written to a http.Request.

func NewUpgradeDeploymentStatelessResourceParams

func NewUpgradeDeploymentStatelessResourceParams() *UpgradeDeploymentStatelessResourceParams

NewUpgradeDeploymentStatelessResourceParams creates a new UpgradeDeploymentStatelessResourceParams 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 NewUpgradeDeploymentStatelessResourceParamsWithContext

func NewUpgradeDeploymentStatelessResourceParamsWithContext(ctx context.Context) *UpgradeDeploymentStatelessResourceParams

NewUpgradeDeploymentStatelessResourceParamsWithContext creates a new UpgradeDeploymentStatelessResourceParams object with the ability to set a context for a request.

func NewUpgradeDeploymentStatelessResourceParamsWithHTTPClient

func NewUpgradeDeploymentStatelessResourceParamsWithHTTPClient(client *http.Client) *UpgradeDeploymentStatelessResourceParams

NewUpgradeDeploymentStatelessResourceParamsWithHTTPClient creates a new UpgradeDeploymentStatelessResourceParams object with the ability to set a custom HTTPClient for a request.

func NewUpgradeDeploymentStatelessResourceParamsWithTimeout

func NewUpgradeDeploymentStatelessResourceParamsWithTimeout(timeout time.Duration) *UpgradeDeploymentStatelessResourceParams

NewUpgradeDeploymentStatelessResourceParamsWithTimeout creates a new UpgradeDeploymentStatelessResourceParams object with the ability to set a timeout on a request.

func (*UpgradeDeploymentStatelessResourceParams) SetContext

SetContext adds the context to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) SetDefaults added in v1.3.0

SetDefaults hydrates default values in the upgrade deployment stateless resource params (not the query body).

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

func (*UpgradeDeploymentStatelessResourceParams) SetDeploymentID

func (o *UpgradeDeploymentStatelessResourceParams) SetDeploymentID(deploymentID string)

SetDeploymentID adds the deploymentId to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) SetRefID

SetRefID adds the refId to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) SetStatelessResourceKind

func (o *UpgradeDeploymentStatelessResourceParams) SetStatelessResourceKind(statelessResourceKind string)

SetStatelessResourceKind adds the statelessResourceKind to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) SetTimeout

SetTimeout adds the timeout to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) SetValidateOnly

func (o *UpgradeDeploymentStatelessResourceParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) WithContext

WithContext adds the context to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) WithDefaults added in v1.3.0

WithDefaults hydrates default values in the upgrade deployment stateless resource params (not the query body).

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

func (*UpgradeDeploymentStatelessResourceParams) WithDeploymentID

WithDeploymentID adds the deploymentID to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) WithRefID

WithRefID adds the refID to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) WithStatelessResourceKind

func (o *UpgradeDeploymentStatelessResourceParams) WithStatelessResourceKind(statelessResourceKind string) *UpgradeDeploymentStatelessResourceParams

WithStatelessResourceKind adds the statelessResourceKind to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) WithTimeout

WithTimeout adds the timeout to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) WithValidateOnly

WithValidateOnly adds the validateOnly to the upgrade deployment stateless resource params

func (*UpgradeDeploymentStatelessResourceParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpgradeDeploymentStatelessResourceReader

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

UpgradeDeploymentStatelessResourceReader is a Reader for the UpgradeDeploymentStatelessResource structure.

func (*UpgradeDeploymentStatelessResourceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpgradeDeploymentStatelessResourceRetryWith

type UpgradeDeploymentStatelessResourceRetryWith struct {

	/* The error codes associated with the response
	 */
	XCloudErrorCodes string

	Payload *models.BasicFailedReply
}
UpgradeDeploymentStatelessResourceRetryWith describes a response with status code 449, with default header values.

Elevated permissions are required. (code: `root.unauthorized.rbac.elevated_permissions_required`)

func NewUpgradeDeploymentStatelessResourceRetryWith

func NewUpgradeDeploymentStatelessResourceRetryWith() *UpgradeDeploymentStatelessResourceRetryWith

NewUpgradeDeploymentStatelessResourceRetryWith creates a UpgradeDeploymentStatelessResourceRetryWith with default headers values

func (*UpgradeDeploymentStatelessResourceRetryWith) Error

func (*UpgradeDeploymentStatelessResourceRetryWith) GetPayload

Source Files

Jump to

Keyboard shortcuts

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