variables

package
v0.5.10 Latest Latest
Warning

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

Go to latest
Published: Nov 16, 2021 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for variables API

func (*Client) DeleteInstanceVariable

func (a *Client) DeleteInstanceVariable(params *DeleteInstanceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteInstanceVariableOK, error)

DeleteInstanceVariable deletes a instance variable

Delete a instance variable.

func (*Client) DeleteNamespaceVariable

func (a *Client) DeleteNamespaceVariable(params *DeleteNamespaceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteNamespaceVariableOK, error)

DeleteNamespaceVariable deletes a namespace variable

Delete a namespace variable.

func (*Client) DeleteWorkflowVariable

func (a *Client) DeleteWorkflowVariable(params *DeleteWorkflowVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteWorkflowVariableOK, error)

DeleteWorkflowVariable deletes a workflow variable

Delete a workflow variable.

func (*Client) GetInstanceVariable

func (a *Client) GetInstanceVariable(params *GetInstanceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetInstanceVariableOK, error)

GetInstanceVariable gets a instance variable

Get the value sorted in a instance variable.

func (*Client) GetInstanceVariables

func (a *Client) GetInstanceVariables(params *GetInstanceVariablesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetInstanceVariablesOK, error)

GetInstanceVariables gets list of instance variable

Gets a list of variables in a instance.

func (*Client) GetNamespaceVariable

func (a *Client) GetNamespaceVariable(params *GetNamespaceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetNamespaceVariableOK, error)

GetNamespaceVariable gets a namespace variable

Get the value sorted in a namespace variable.

func (*Client) GetNamespaceVariables

func (a *Client) GetNamespaceVariables(params *GetNamespaceVariablesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetNamespaceVariablesOK, error)

GetNamespaceVariables gets namespace variable list

Gets a list of variables in a namespace.

func (*Client) GetWorkflowVariable

func (a *Client) GetWorkflowVariable(params *GetWorkflowVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetWorkflowVariableOK, error)

GetWorkflowVariable gets a workflow variable

Get the value sorted in a workflow variable.

func (*Client) GetWorkflowVariables

func (a *Client) GetWorkflowVariables(params *GetWorkflowVariablesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetWorkflowVariablesOK, error)

GetWorkflowVariables gets list of workflow variables

Gets a list of variables in a workflow.

func (*Client) SetInstanceVariable

func (a *Client) SetInstanceVariable(params *SetInstanceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetInstanceVariableOK, error)
SetInstanceVariable sets a instance variable

Set the value sorted in a instance variable.

If the target variable does not exists, it will be created. Variable data can be anything.

func (*Client) SetNamespaceVariable

func (a *Client) SetNamespaceVariable(params *SetNamespaceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetNamespaceVariableOK, error)
SetNamespaceVariable sets a namespace variable

Set the value sorted in a namespace variable.

If the target variable does not exists, it will be created. Variable data can be anything.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) SetWorkflowVariable

func (a *Client) SetWorkflowVariable(params *SetWorkflowVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetWorkflowVariableOK, error)
SetWorkflowVariable sets a workflow variable

Set the value sorted in a workflow variable.

If the target variable does not exists, it will be created. Variable data can be anything.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	DeleteInstanceVariable(params *DeleteInstanceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteInstanceVariableOK, error)

	DeleteNamespaceVariable(params *DeleteNamespaceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteNamespaceVariableOK, error)

	DeleteWorkflowVariable(params *DeleteWorkflowVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteWorkflowVariableOK, error)

	GetInstanceVariable(params *GetInstanceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetInstanceVariableOK, error)

	GetInstanceVariables(params *GetInstanceVariablesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetInstanceVariablesOK, error)

	GetNamespaceVariable(params *GetNamespaceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetNamespaceVariableOK, error)

	GetNamespaceVariables(params *GetNamespaceVariablesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetNamespaceVariablesOK, error)

	GetWorkflowVariable(params *GetWorkflowVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetWorkflowVariableOK, error)

	GetWorkflowVariables(params *GetWorkflowVariablesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetWorkflowVariablesOK, error)

	SetInstanceVariable(params *SetInstanceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetInstanceVariableOK, error)

	SetNamespaceVariable(params *SetNamespaceVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetNamespaceVariableOK, error)

	SetWorkflowVariable(params *SetWorkflowVariableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SetWorkflowVariableOK, 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 variables API client.

type DeleteInstanceVariableOK

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

successfully deleted instance variable

func NewDeleteInstanceVariableOK

func NewDeleteInstanceVariableOK() *DeleteInstanceVariableOK

NewDeleteInstanceVariableOK creates a DeleteInstanceVariableOK with default headers values

func (*DeleteInstanceVariableOK) Error

func (o *DeleteInstanceVariableOK) Error() string

type DeleteInstanceVariableParams

type DeleteInstanceVariableParams struct {

	/* Instance.

	   target instance
	*/
	Instance string

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Variable.

	   target variable
	*/
	Variable string

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

DeleteInstanceVariableParams contains all the parameters to send to the API endpoint

for the delete instance variable operation.

Typically these are written to a http.Request.

func NewDeleteInstanceVariableParams

func NewDeleteInstanceVariableParams() *DeleteInstanceVariableParams

NewDeleteInstanceVariableParams creates a new DeleteInstanceVariableParams 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 NewDeleteInstanceVariableParamsWithContext

func NewDeleteInstanceVariableParamsWithContext(ctx context.Context) *DeleteInstanceVariableParams

NewDeleteInstanceVariableParamsWithContext creates a new DeleteInstanceVariableParams object with the ability to set a context for a request.

func NewDeleteInstanceVariableParamsWithHTTPClient

func NewDeleteInstanceVariableParamsWithHTTPClient(client *http.Client) *DeleteInstanceVariableParams

NewDeleteInstanceVariableParamsWithHTTPClient creates a new DeleteInstanceVariableParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteInstanceVariableParamsWithTimeout

func NewDeleteInstanceVariableParamsWithTimeout(timeout time.Duration) *DeleteInstanceVariableParams

NewDeleteInstanceVariableParamsWithTimeout creates a new DeleteInstanceVariableParams object with the ability to set a timeout on a request.

func (*DeleteInstanceVariableParams) SetContext

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

SetContext adds the context to the delete instance variable params

func (*DeleteInstanceVariableParams) SetDefaults

func (o *DeleteInstanceVariableParams) SetDefaults()

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

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

func (*DeleteInstanceVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete instance variable params

func (*DeleteInstanceVariableParams) SetInstance

func (o *DeleteInstanceVariableParams) SetInstance(instance string)

SetInstance adds the instance to the delete instance variable params

func (*DeleteInstanceVariableParams) SetNamespace

func (o *DeleteInstanceVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the delete instance variable params

func (*DeleteInstanceVariableParams) SetTimeout

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

SetTimeout adds the timeout to the delete instance variable params

func (*DeleteInstanceVariableParams) SetVariable

func (o *DeleteInstanceVariableParams) SetVariable(variable string)

SetVariable adds the variable to the delete instance variable params

func (*DeleteInstanceVariableParams) WithContext

WithContext adds the context to the delete instance variable params

func (*DeleteInstanceVariableParams) WithDefaults

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

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

func (*DeleteInstanceVariableParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete instance variable params

func (*DeleteInstanceVariableParams) WithInstance

WithInstance adds the instance to the delete instance variable params

func (*DeleteInstanceVariableParams) WithNamespace

WithNamespace adds the namespace to the delete instance variable params

func (*DeleteInstanceVariableParams) WithTimeout

WithTimeout adds the timeout to the delete instance variable params

func (*DeleteInstanceVariableParams) WithVariable

WithVariable adds the variable to the delete instance variable params

func (*DeleteInstanceVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteInstanceVariableReader

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

DeleteInstanceVariableReader is a Reader for the DeleteInstanceVariable structure.

func (*DeleteInstanceVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteNamespaceVariableOK

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

successfully deleted namespace variable

func NewDeleteNamespaceVariableOK

func NewDeleteNamespaceVariableOK() *DeleteNamespaceVariableOK

NewDeleteNamespaceVariableOK creates a DeleteNamespaceVariableOK with default headers values

func (*DeleteNamespaceVariableOK) Error

func (o *DeleteNamespaceVariableOK) Error() string

type DeleteNamespaceVariableParams

type DeleteNamespaceVariableParams struct {

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Variable.

	   target variable
	*/
	Variable string

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

DeleteNamespaceVariableParams contains all the parameters to send to the API endpoint

for the delete namespace variable operation.

Typically these are written to a http.Request.

func NewDeleteNamespaceVariableParams

func NewDeleteNamespaceVariableParams() *DeleteNamespaceVariableParams

NewDeleteNamespaceVariableParams creates a new DeleteNamespaceVariableParams 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 NewDeleteNamespaceVariableParamsWithContext

func NewDeleteNamespaceVariableParamsWithContext(ctx context.Context) *DeleteNamespaceVariableParams

NewDeleteNamespaceVariableParamsWithContext creates a new DeleteNamespaceVariableParams object with the ability to set a context for a request.

func NewDeleteNamespaceVariableParamsWithHTTPClient

func NewDeleteNamespaceVariableParamsWithHTTPClient(client *http.Client) *DeleteNamespaceVariableParams

NewDeleteNamespaceVariableParamsWithHTTPClient creates a new DeleteNamespaceVariableParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteNamespaceVariableParamsWithTimeout

func NewDeleteNamespaceVariableParamsWithTimeout(timeout time.Duration) *DeleteNamespaceVariableParams

NewDeleteNamespaceVariableParamsWithTimeout creates a new DeleteNamespaceVariableParams object with the ability to set a timeout on a request.

func (*DeleteNamespaceVariableParams) SetContext

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

SetContext adds the context to the delete namespace variable params

func (*DeleteNamespaceVariableParams) SetDefaults

func (o *DeleteNamespaceVariableParams) SetDefaults()

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

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

func (*DeleteNamespaceVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete namespace variable params

func (*DeleteNamespaceVariableParams) SetNamespace

func (o *DeleteNamespaceVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the delete namespace variable params

func (*DeleteNamespaceVariableParams) SetTimeout

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

SetTimeout adds the timeout to the delete namespace variable params

func (*DeleteNamespaceVariableParams) SetVariable

func (o *DeleteNamespaceVariableParams) SetVariable(variable string)

SetVariable adds the variable to the delete namespace variable params

func (*DeleteNamespaceVariableParams) WithContext

WithContext adds the context to the delete namespace variable params

func (*DeleteNamespaceVariableParams) WithDefaults

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

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

func (*DeleteNamespaceVariableParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete namespace variable params

func (*DeleteNamespaceVariableParams) WithNamespace

WithNamespace adds the namespace to the delete namespace variable params

func (*DeleteNamespaceVariableParams) WithTimeout

WithTimeout adds the timeout to the delete namespace variable params

func (*DeleteNamespaceVariableParams) WithVariable

WithVariable adds the variable to the delete namespace variable params

func (*DeleteNamespaceVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteNamespaceVariableReader

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

DeleteNamespaceVariableReader is a Reader for the DeleteNamespaceVariable structure.

func (*DeleteNamespaceVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteWorkflowVariableOK

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

successfully deleted workflow variable

func NewDeleteWorkflowVariableOK

func NewDeleteWorkflowVariableOK() *DeleteWorkflowVariableOK

NewDeleteWorkflowVariableOK creates a DeleteWorkflowVariableOK with default headers values

func (*DeleteWorkflowVariableOK) Error

func (o *DeleteWorkflowVariableOK) Error() string

type DeleteWorkflowVariableParams

type DeleteWorkflowVariableParams struct {

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Var.

	   target variable
	*/
	Var string

	/* Workflow.

	   path to target workflow
	*/
	Workflow string

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

DeleteWorkflowVariableParams contains all the parameters to send to the API endpoint

for the delete workflow variable operation.

Typically these are written to a http.Request.

func NewDeleteWorkflowVariableParams

func NewDeleteWorkflowVariableParams() *DeleteWorkflowVariableParams

NewDeleteWorkflowVariableParams creates a new DeleteWorkflowVariableParams 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 NewDeleteWorkflowVariableParamsWithContext

func NewDeleteWorkflowVariableParamsWithContext(ctx context.Context) *DeleteWorkflowVariableParams

NewDeleteWorkflowVariableParamsWithContext creates a new DeleteWorkflowVariableParams object with the ability to set a context for a request.

func NewDeleteWorkflowVariableParamsWithHTTPClient

func NewDeleteWorkflowVariableParamsWithHTTPClient(client *http.Client) *DeleteWorkflowVariableParams

NewDeleteWorkflowVariableParamsWithHTTPClient creates a new DeleteWorkflowVariableParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteWorkflowVariableParamsWithTimeout

func NewDeleteWorkflowVariableParamsWithTimeout(timeout time.Duration) *DeleteWorkflowVariableParams

NewDeleteWorkflowVariableParamsWithTimeout creates a new DeleteWorkflowVariableParams object with the ability to set a timeout on a request.

func (*DeleteWorkflowVariableParams) SetContext

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

SetContext adds the context to the delete workflow variable params

func (*DeleteWorkflowVariableParams) SetDefaults

func (o *DeleteWorkflowVariableParams) SetDefaults()

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

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

func (*DeleteWorkflowVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete workflow variable params

func (*DeleteWorkflowVariableParams) SetNamespace

func (o *DeleteWorkflowVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the delete workflow variable params

func (*DeleteWorkflowVariableParams) SetTimeout

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

SetTimeout adds the timeout to the delete workflow variable params

func (*DeleteWorkflowVariableParams) SetVar

func (o *DeleteWorkflowVariableParams) SetVar(varVar string)

SetVar adds the var to the delete workflow variable params

func (*DeleteWorkflowVariableParams) SetWorkflow

func (o *DeleteWorkflowVariableParams) SetWorkflow(workflow string)

SetWorkflow adds the workflow to the delete workflow variable params

func (*DeleteWorkflowVariableParams) WithContext

WithContext adds the context to the delete workflow variable params

func (*DeleteWorkflowVariableParams) WithDefaults

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

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

func (*DeleteWorkflowVariableParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete workflow variable params

func (*DeleteWorkflowVariableParams) WithNamespace

WithNamespace adds the namespace to the delete workflow variable params

func (*DeleteWorkflowVariableParams) WithTimeout

WithTimeout adds the timeout to the delete workflow variable params

func (*DeleteWorkflowVariableParams) WithVar

WithVar adds the varVar to the delete workflow variable params

func (*DeleteWorkflowVariableParams) WithWorkflow

WithWorkflow adds the workflow to the delete workflow variable params

func (*DeleteWorkflowVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteWorkflowVariableReader

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

DeleteWorkflowVariableReader is a Reader for the DeleteWorkflowVariable structure.

func (*DeleteWorkflowVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetInstanceVariableOK

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

successfully got instance variable

func NewGetInstanceVariableOK

func NewGetInstanceVariableOK() *GetInstanceVariableOK

NewGetInstanceVariableOK creates a GetInstanceVariableOK with default headers values

func (*GetInstanceVariableOK) Error

func (o *GetInstanceVariableOK) Error() string

type GetInstanceVariableParams

type GetInstanceVariableParams struct {

	/* Instance.

	   target instance
	*/
	Instance string

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Variable.

	   target variable
	*/
	Variable string

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

GetInstanceVariableParams contains all the parameters to send to the API endpoint

for the get instance variable operation.

Typically these are written to a http.Request.

func NewGetInstanceVariableParams

func NewGetInstanceVariableParams() *GetInstanceVariableParams

NewGetInstanceVariableParams creates a new GetInstanceVariableParams 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 NewGetInstanceVariableParamsWithContext

func NewGetInstanceVariableParamsWithContext(ctx context.Context) *GetInstanceVariableParams

NewGetInstanceVariableParamsWithContext creates a new GetInstanceVariableParams object with the ability to set a context for a request.

func NewGetInstanceVariableParamsWithHTTPClient

func NewGetInstanceVariableParamsWithHTTPClient(client *http.Client) *GetInstanceVariableParams

NewGetInstanceVariableParamsWithHTTPClient creates a new GetInstanceVariableParams object with the ability to set a custom HTTPClient for a request.

func NewGetInstanceVariableParamsWithTimeout

func NewGetInstanceVariableParamsWithTimeout(timeout time.Duration) *GetInstanceVariableParams

NewGetInstanceVariableParamsWithTimeout creates a new GetInstanceVariableParams object with the ability to set a timeout on a request.

func (*GetInstanceVariableParams) SetContext

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

SetContext adds the context to the get instance variable params

func (*GetInstanceVariableParams) SetDefaults

func (o *GetInstanceVariableParams) SetDefaults()

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

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

func (*GetInstanceVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get instance variable params

func (*GetInstanceVariableParams) SetInstance

func (o *GetInstanceVariableParams) SetInstance(instance string)

SetInstance adds the instance to the get instance variable params

func (*GetInstanceVariableParams) SetNamespace

func (o *GetInstanceVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the get instance variable params

func (*GetInstanceVariableParams) SetTimeout

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

SetTimeout adds the timeout to the get instance variable params

func (*GetInstanceVariableParams) SetVariable

func (o *GetInstanceVariableParams) SetVariable(variable string)

SetVariable adds the variable to the get instance variable params

func (*GetInstanceVariableParams) WithContext

WithContext adds the context to the get instance variable params

func (*GetInstanceVariableParams) WithDefaults

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

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

func (*GetInstanceVariableParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get instance variable params

func (*GetInstanceVariableParams) WithInstance

func (o *GetInstanceVariableParams) WithInstance(instance string) *GetInstanceVariableParams

WithInstance adds the instance to the get instance variable params

func (*GetInstanceVariableParams) WithNamespace

func (o *GetInstanceVariableParams) WithNamespace(namespace string) *GetInstanceVariableParams

WithNamespace adds the namespace to the get instance variable params

func (*GetInstanceVariableParams) WithTimeout

WithTimeout adds the timeout to the get instance variable params

func (*GetInstanceVariableParams) WithVariable

func (o *GetInstanceVariableParams) WithVariable(variable string) *GetInstanceVariableParams

WithVariable adds the variable to the get instance variable params

func (*GetInstanceVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetInstanceVariableReader

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

GetInstanceVariableReader is a Reader for the GetInstanceVariable structure.

func (*GetInstanceVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetInstanceVariablesOK

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

successfully got instance variables

func NewGetInstanceVariablesOK

func NewGetInstanceVariablesOK() *GetInstanceVariablesOK

NewGetInstanceVariablesOK creates a GetInstanceVariablesOK with default headers values

func (*GetInstanceVariablesOK) Error

func (o *GetInstanceVariablesOK) Error() string

type GetInstanceVariablesParams

type GetInstanceVariablesParams struct {

	/* Instance.

	   target instance
	*/
	Instance string

	/* Namespace.

	   target namespace
	*/
	Namespace string

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

GetInstanceVariablesParams contains all the parameters to send to the API endpoint

for the get instance variables operation.

Typically these are written to a http.Request.

func NewGetInstanceVariablesParams

func NewGetInstanceVariablesParams() *GetInstanceVariablesParams

NewGetInstanceVariablesParams creates a new GetInstanceVariablesParams 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 NewGetInstanceVariablesParamsWithContext

func NewGetInstanceVariablesParamsWithContext(ctx context.Context) *GetInstanceVariablesParams

NewGetInstanceVariablesParamsWithContext creates a new GetInstanceVariablesParams object with the ability to set a context for a request.

func NewGetInstanceVariablesParamsWithHTTPClient

func NewGetInstanceVariablesParamsWithHTTPClient(client *http.Client) *GetInstanceVariablesParams

NewGetInstanceVariablesParamsWithHTTPClient creates a new GetInstanceVariablesParams object with the ability to set a custom HTTPClient for a request.

func NewGetInstanceVariablesParamsWithTimeout

func NewGetInstanceVariablesParamsWithTimeout(timeout time.Duration) *GetInstanceVariablesParams

NewGetInstanceVariablesParamsWithTimeout creates a new GetInstanceVariablesParams object with the ability to set a timeout on a request.

func (*GetInstanceVariablesParams) SetContext

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

SetContext adds the context to the get instance variables params

func (*GetInstanceVariablesParams) SetDefaults

func (o *GetInstanceVariablesParams) SetDefaults()

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

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

func (*GetInstanceVariablesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get instance variables params

func (*GetInstanceVariablesParams) SetInstance

func (o *GetInstanceVariablesParams) SetInstance(instance string)

SetInstance adds the instance to the get instance variables params

func (*GetInstanceVariablesParams) SetNamespace

func (o *GetInstanceVariablesParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the get instance variables params

func (*GetInstanceVariablesParams) SetTimeout

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

SetTimeout adds the timeout to the get instance variables params

func (*GetInstanceVariablesParams) WithContext

WithContext adds the context to the get instance variables params

func (*GetInstanceVariablesParams) WithDefaults

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

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

func (*GetInstanceVariablesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get instance variables params

func (*GetInstanceVariablesParams) WithInstance

WithInstance adds the instance to the get instance variables params

func (*GetInstanceVariablesParams) WithNamespace

func (o *GetInstanceVariablesParams) WithNamespace(namespace string) *GetInstanceVariablesParams

WithNamespace adds the namespace to the get instance variables params

func (*GetInstanceVariablesParams) WithTimeout

WithTimeout adds the timeout to the get instance variables params

func (*GetInstanceVariablesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetInstanceVariablesReader

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

GetInstanceVariablesReader is a Reader for the GetInstanceVariables structure.

func (*GetInstanceVariablesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNamespaceVariableOK

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

successfully got namespace variable

func NewGetNamespaceVariableOK

func NewGetNamespaceVariableOK() *GetNamespaceVariableOK

NewGetNamespaceVariableOK creates a GetNamespaceVariableOK with default headers values

func (*GetNamespaceVariableOK) Error

func (o *GetNamespaceVariableOK) Error() string

type GetNamespaceVariableParams

type GetNamespaceVariableParams struct {

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Variable.

	   target variable
	*/
	Variable string

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

GetNamespaceVariableParams contains all the parameters to send to the API endpoint

for the get namespace variable operation.

Typically these are written to a http.Request.

func NewGetNamespaceVariableParams

func NewGetNamespaceVariableParams() *GetNamespaceVariableParams

NewGetNamespaceVariableParams creates a new GetNamespaceVariableParams 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 NewGetNamespaceVariableParamsWithContext

func NewGetNamespaceVariableParamsWithContext(ctx context.Context) *GetNamespaceVariableParams

NewGetNamespaceVariableParamsWithContext creates a new GetNamespaceVariableParams object with the ability to set a context for a request.

func NewGetNamespaceVariableParamsWithHTTPClient

func NewGetNamespaceVariableParamsWithHTTPClient(client *http.Client) *GetNamespaceVariableParams

NewGetNamespaceVariableParamsWithHTTPClient creates a new GetNamespaceVariableParams object with the ability to set a custom HTTPClient for a request.

func NewGetNamespaceVariableParamsWithTimeout

func NewGetNamespaceVariableParamsWithTimeout(timeout time.Duration) *GetNamespaceVariableParams

NewGetNamespaceVariableParamsWithTimeout creates a new GetNamespaceVariableParams object with the ability to set a timeout on a request.

func (*GetNamespaceVariableParams) SetContext

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

SetContext adds the context to the get namespace variable params

func (*GetNamespaceVariableParams) SetDefaults

func (o *GetNamespaceVariableParams) SetDefaults()

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

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

func (*GetNamespaceVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get namespace variable params

func (*GetNamespaceVariableParams) SetNamespace

func (o *GetNamespaceVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the get namespace variable params

func (*GetNamespaceVariableParams) SetTimeout

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

SetTimeout adds the timeout to the get namespace variable params

func (*GetNamespaceVariableParams) SetVariable

func (o *GetNamespaceVariableParams) SetVariable(variable string)

SetVariable adds the variable to the get namespace variable params

func (*GetNamespaceVariableParams) WithContext

WithContext adds the context to the get namespace variable params

func (*GetNamespaceVariableParams) WithDefaults

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

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

func (*GetNamespaceVariableParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get namespace variable params

func (*GetNamespaceVariableParams) WithNamespace

func (o *GetNamespaceVariableParams) WithNamespace(namespace string) *GetNamespaceVariableParams

WithNamespace adds the namespace to the get namespace variable params

func (*GetNamespaceVariableParams) WithTimeout

WithTimeout adds the timeout to the get namespace variable params

func (*GetNamespaceVariableParams) WithVariable

WithVariable adds the variable to the get namespace variable params

func (*GetNamespaceVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetNamespaceVariableReader

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

GetNamespaceVariableReader is a Reader for the GetNamespaceVariable structure.

func (*GetNamespaceVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNamespaceVariablesOK

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

successfully got namespace variables

func NewGetNamespaceVariablesOK

func NewGetNamespaceVariablesOK() *GetNamespaceVariablesOK

NewGetNamespaceVariablesOK creates a GetNamespaceVariablesOK with default headers values

func (*GetNamespaceVariablesOK) Error

func (o *GetNamespaceVariablesOK) Error() string

type GetNamespaceVariablesParams

type GetNamespaceVariablesParams struct {

	/* Namespace.

	   target namespace
	*/
	Namespace string

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

GetNamespaceVariablesParams contains all the parameters to send to the API endpoint

for the get namespace variables operation.

Typically these are written to a http.Request.

func NewGetNamespaceVariablesParams

func NewGetNamespaceVariablesParams() *GetNamespaceVariablesParams

NewGetNamespaceVariablesParams creates a new GetNamespaceVariablesParams 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 NewGetNamespaceVariablesParamsWithContext

func NewGetNamespaceVariablesParamsWithContext(ctx context.Context) *GetNamespaceVariablesParams

NewGetNamespaceVariablesParamsWithContext creates a new GetNamespaceVariablesParams object with the ability to set a context for a request.

func NewGetNamespaceVariablesParamsWithHTTPClient

func NewGetNamespaceVariablesParamsWithHTTPClient(client *http.Client) *GetNamespaceVariablesParams

NewGetNamespaceVariablesParamsWithHTTPClient creates a new GetNamespaceVariablesParams object with the ability to set a custom HTTPClient for a request.

func NewGetNamespaceVariablesParamsWithTimeout

func NewGetNamespaceVariablesParamsWithTimeout(timeout time.Duration) *GetNamespaceVariablesParams

NewGetNamespaceVariablesParamsWithTimeout creates a new GetNamespaceVariablesParams object with the ability to set a timeout on a request.

func (*GetNamespaceVariablesParams) SetContext

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

SetContext adds the context to the get namespace variables params

func (*GetNamespaceVariablesParams) SetDefaults

func (o *GetNamespaceVariablesParams) SetDefaults()

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

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

func (*GetNamespaceVariablesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get namespace variables params

func (*GetNamespaceVariablesParams) SetNamespace

func (o *GetNamespaceVariablesParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the get namespace variables params

func (*GetNamespaceVariablesParams) SetTimeout

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

SetTimeout adds the timeout to the get namespace variables params

func (*GetNamespaceVariablesParams) WithContext

WithContext adds the context to the get namespace variables params

func (*GetNamespaceVariablesParams) WithDefaults

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

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

func (*GetNamespaceVariablesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get namespace variables params

func (*GetNamespaceVariablesParams) WithNamespace

func (o *GetNamespaceVariablesParams) WithNamespace(namespace string) *GetNamespaceVariablesParams

WithNamespace adds the namespace to the get namespace variables params

func (*GetNamespaceVariablesParams) WithTimeout

WithTimeout adds the timeout to the get namespace variables params

func (*GetNamespaceVariablesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetNamespaceVariablesReader

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

GetNamespaceVariablesReader is a Reader for the GetNamespaceVariables structure.

func (*GetNamespaceVariablesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetWorkflowVariableOK

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

successfully got workflow variable

func NewGetWorkflowVariableOK

func NewGetWorkflowVariableOK() *GetWorkflowVariableOK

NewGetWorkflowVariableOK creates a GetWorkflowVariableOK with default headers values

func (*GetWorkflowVariableOK) Error

func (o *GetWorkflowVariableOK) Error() string

type GetWorkflowVariableParams

type GetWorkflowVariableParams struct {

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Var.

	   target variable
	*/
	Var string

	/* Workflow.

	   path to target workflow
	*/
	Workflow string

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

GetWorkflowVariableParams contains all the parameters to send to the API endpoint

for the get workflow variable operation.

Typically these are written to a http.Request.

func NewGetWorkflowVariableParams

func NewGetWorkflowVariableParams() *GetWorkflowVariableParams

NewGetWorkflowVariableParams creates a new GetWorkflowVariableParams 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 NewGetWorkflowVariableParamsWithContext

func NewGetWorkflowVariableParamsWithContext(ctx context.Context) *GetWorkflowVariableParams

NewGetWorkflowVariableParamsWithContext creates a new GetWorkflowVariableParams object with the ability to set a context for a request.

func NewGetWorkflowVariableParamsWithHTTPClient

func NewGetWorkflowVariableParamsWithHTTPClient(client *http.Client) *GetWorkflowVariableParams

NewGetWorkflowVariableParamsWithHTTPClient creates a new GetWorkflowVariableParams object with the ability to set a custom HTTPClient for a request.

func NewGetWorkflowVariableParamsWithTimeout

func NewGetWorkflowVariableParamsWithTimeout(timeout time.Duration) *GetWorkflowVariableParams

NewGetWorkflowVariableParamsWithTimeout creates a new GetWorkflowVariableParams object with the ability to set a timeout on a request.

func (*GetWorkflowVariableParams) SetContext

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

SetContext adds the context to the get workflow variable params

func (*GetWorkflowVariableParams) SetDefaults

func (o *GetWorkflowVariableParams) SetDefaults()

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

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

func (*GetWorkflowVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get workflow variable params

func (*GetWorkflowVariableParams) SetNamespace

func (o *GetWorkflowVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the get workflow variable params

func (*GetWorkflowVariableParams) SetTimeout

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

SetTimeout adds the timeout to the get workflow variable params

func (*GetWorkflowVariableParams) SetVar

func (o *GetWorkflowVariableParams) SetVar(varVar string)

SetVar adds the var to the get workflow variable params

func (*GetWorkflowVariableParams) SetWorkflow

func (o *GetWorkflowVariableParams) SetWorkflow(workflow string)

SetWorkflow adds the workflow to the get workflow variable params

func (*GetWorkflowVariableParams) WithContext

WithContext adds the context to the get workflow variable params

func (*GetWorkflowVariableParams) WithDefaults

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

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

func (*GetWorkflowVariableParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get workflow variable params

func (*GetWorkflowVariableParams) WithNamespace

func (o *GetWorkflowVariableParams) WithNamespace(namespace string) *GetWorkflowVariableParams

WithNamespace adds the namespace to the get workflow variable params

func (*GetWorkflowVariableParams) WithTimeout

WithTimeout adds the timeout to the get workflow variable params

func (*GetWorkflowVariableParams) WithVar

WithVar adds the varVar to the get workflow variable params

func (*GetWorkflowVariableParams) WithWorkflow

func (o *GetWorkflowVariableParams) WithWorkflow(workflow string) *GetWorkflowVariableParams

WithWorkflow adds the workflow to the get workflow variable params

func (*GetWorkflowVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetWorkflowVariableReader

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

GetWorkflowVariableReader is a Reader for the GetWorkflowVariable structure.

func (*GetWorkflowVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetWorkflowVariablesOK

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

successfully got workflow variables

func NewGetWorkflowVariablesOK

func NewGetWorkflowVariablesOK() *GetWorkflowVariablesOK

NewGetWorkflowVariablesOK creates a GetWorkflowVariablesOK with default headers values

func (*GetWorkflowVariablesOK) Error

func (o *GetWorkflowVariablesOK) Error() string

type GetWorkflowVariablesParams

type GetWorkflowVariablesParams struct {

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Workflow.

	   path to target workflow
	*/
	Workflow string

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

GetWorkflowVariablesParams contains all the parameters to send to the API endpoint

for the get workflow variables operation.

Typically these are written to a http.Request.

func NewGetWorkflowVariablesParams

func NewGetWorkflowVariablesParams() *GetWorkflowVariablesParams

NewGetWorkflowVariablesParams creates a new GetWorkflowVariablesParams 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 NewGetWorkflowVariablesParamsWithContext

func NewGetWorkflowVariablesParamsWithContext(ctx context.Context) *GetWorkflowVariablesParams

NewGetWorkflowVariablesParamsWithContext creates a new GetWorkflowVariablesParams object with the ability to set a context for a request.

func NewGetWorkflowVariablesParamsWithHTTPClient

func NewGetWorkflowVariablesParamsWithHTTPClient(client *http.Client) *GetWorkflowVariablesParams

NewGetWorkflowVariablesParamsWithHTTPClient creates a new GetWorkflowVariablesParams object with the ability to set a custom HTTPClient for a request.

func NewGetWorkflowVariablesParamsWithTimeout

func NewGetWorkflowVariablesParamsWithTimeout(timeout time.Duration) *GetWorkflowVariablesParams

NewGetWorkflowVariablesParamsWithTimeout creates a new GetWorkflowVariablesParams object with the ability to set a timeout on a request.

func (*GetWorkflowVariablesParams) SetContext

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

SetContext adds the context to the get workflow variables params

func (*GetWorkflowVariablesParams) SetDefaults

func (o *GetWorkflowVariablesParams) SetDefaults()

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

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

func (*GetWorkflowVariablesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get workflow variables params

func (*GetWorkflowVariablesParams) SetNamespace

func (o *GetWorkflowVariablesParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the get workflow variables params

func (*GetWorkflowVariablesParams) SetTimeout

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

SetTimeout adds the timeout to the get workflow variables params

func (*GetWorkflowVariablesParams) SetWorkflow

func (o *GetWorkflowVariablesParams) SetWorkflow(workflow string)

SetWorkflow adds the workflow to the get workflow variables params

func (*GetWorkflowVariablesParams) WithContext

WithContext adds the context to the get workflow variables params

func (*GetWorkflowVariablesParams) WithDefaults

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

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

func (*GetWorkflowVariablesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get workflow variables params

func (*GetWorkflowVariablesParams) WithNamespace

func (o *GetWorkflowVariablesParams) WithNamespace(namespace string) *GetWorkflowVariablesParams

WithNamespace adds the namespace to the get workflow variables params

func (*GetWorkflowVariablesParams) WithTimeout

WithTimeout adds the timeout to the get workflow variables params

func (*GetWorkflowVariablesParams) WithWorkflow

WithWorkflow adds the workflow to the get workflow variables params

func (*GetWorkflowVariablesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetWorkflowVariablesReader

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

GetWorkflowVariablesReader is a Reader for the GetWorkflowVariables structure.

func (*GetWorkflowVariablesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SetInstanceVariableOK

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

successfully set instance variable

func NewSetInstanceVariableOK

func NewSetInstanceVariableOK() *SetInstanceVariableOK

NewSetInstanceVariableOK creates a SetInstanceVariableOK with default headers values

func (*SetInstanceVariableOK) Error

func (o *SetInstanceVariableOK) Error() string

type SetInstanceVariableParams

type SetInstanceVariableParams struct {

	/* Data.

	   Payload that contains variable data.
	*/
	Data string

	/* Instance.

	   target instance
	*/
	Instance string

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Variable.

	   target variable
	*/
	Variable string

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

SetInstanceVariableParams contains all the parameters to send to the API endpoint

for the set instance variable operation.

Typically these are written to a http.Request.

func NewSetInstanceVariableParams

func NewSetInstanceVariableParams() *SetInstanceVariableParams

NewSetInstanceVariableParams creates a new SetInstanceVariableParams 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 NewSetInstanceVariableParamsWithContext

func NewSetInstanceVariableParamsWithContext(ctx context.Context) *SetInstanceVariableParams

NewSetInstanceVariableParamsWithContext creates a new SetInstanceVariableParams object with the ability to set a context for a request.

func NewSetInstanceVariableParamsWithHTTPClient

func NewSetInstanceVariableParamsWithHTTPClient(client *http.Client) *SetInstanceVariableParams

NewSetInstanceVariableParamsWithHTTPClient creates a new SetInstanceVariableParams object with the ability to set a custom HTTPClient for a request.

func NewSetInstanceVariableParamsWithTimeout

func NewSetInstanceVariableParamsWithTimeout(timeout time.Duration) *SetInstanceVariableParams

NewSetInstanceVariableParamsWithTimeout creates a new SetInstanceVariableParams object with the ability to set a timeout on a request.

func (*SetInstanceVariableParams) SetContext

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

SetContext adds the context to the set instance variable params

func (*SetInstanceVariableParams) SetData

func (o *SetInstanceVariableParams) SetData(data string)

SetData adds the data to the set instance variable params

func (*SetInstanceVariableParams) SetDefaults

func (o *SetInstanceVariableParams) SetDefaults()

SetDefaults hydrates default values in the set instance variable params (not the query body).

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

func (*SetInstanceVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set instance variable params

func (*SetInstanceVariableParams) SetInstance

func (o *SetInstanceVariableParams) SetInstance(instance string)

SetInstance adds the instance to the set instance variable params

func (*SetInstanceVariableParams) SetNamespace

func (o *SetInstanceVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the set instance variable params

func (*SetInstanceVariableParams) SetTimeout

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

SetTimeout adds the timeout to the set instance variable params

func (*SetInstanceVariableParams) SetVariable

func (o *SetInstanceVariableParams) SetVariable(variable string)

SetVariable adds the variable to the set instance variable params

func (*SetInstanceVariableParams) WithContext

WithContext adds the context to the set instance variable params

func (*SetInstanceVariableParams) WithData

WithData adds the data to the set instance variable params

func (*SetInstanceVariableParams) WithDefaults

WithDefaults hydrates default values in the set instance variable params (not the query body).

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

func (*SetInstanceVariableParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the set instance variable params

func (*SetInstanceVariableParams) WithInstance

func (o *SetInstanceVariableParams) WithInstance(instance string) *SetInstanceVariableParams

WithInstance adds the instance to the set instance variable params

func (*SetInstanceVariableParams) WithNamespace

func (o *SetInstanceVariableParams) WithNamespace(namespace string) *SetInstanceVariableParams

WithNamespace adds the namespace to the set instance variable params

func (*SetInstanceVariableParams) WithTimeout

WithTimeout adds the timeout to the set instance variable params

func (*SetInstanceVariableParams) WithVariable

func (o *SetInstanceVariableParams) WithVariable(variable string) *SetInstanceVariableParams

WithVariable adds the variable to the set instance variable params

func (*SetInstanceVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetInstanceVariableReader

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

SetInstanceVariableReader is a Reader for the SetInstanceVariable structure.

func (*SetInstanceVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SetNamespaceVariableOK

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

successfully set namespace variable

func NewSetNamespaceVariableOK

func NewSetNamespaceVariableOK() *SetNamespaceVariableOK

NewSetNamespaceVariableOK creates a SetNamespaceVariableOK with default headers values

func (*SetNamespaceVariableOK) Error

func (o *SetNamespaceVariableOK) Error() string

type SetNamespaceVariableParams

type SetNamespaceVariableParams struct {

	/* Data.

	   Payload that contains variable data.
	*/
	Data string

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Variable.

	   target variable
	*/
	Variable string

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

SetNamespaceVariableParams contains all the parameters to send to the API endpoint

for the set namespace variable operation.

Typically these are written to a http.Request.

func NewSetNamespaceVariableParams

func NewSetNamespaceVariableParams() *SetNamespaceVariableParams

NewSetNamespaceVariableParams creates a new SetNamespaceVariableParams 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 NewSetNamespaceVariableParamsWithContext

func NewSetNamespaceVariableParamsWithContext(ctx context.Context) *SetNamespaceVariableParams

NewSetNamespaceVariableParamsWithContext creates a new SetNamespaceVariableParams object with the ability to set a context for a request.

func NewSetNamespaceVariableParamsWithHTTPClient

func NewSetNamespaceVariableParamsWithHTTPClient(client *http.Client) *SetNamespaceVariableParams

NewSetNamespaceVariableParamsWithHTTPClient creates a new SetNamespaceVariableParams object with the ability to set a custom HTTPClient for a request.

func NewSetNamespaceVariableParamsWithTimeout

func NewSetNamespaceVariableParamsWithTimeout(timeout time.Duration) *SetNamespaceVariableParams

NewSetNamespaceVariableParamsWithTimeout creates a new SetNamespaceVariableParams object with the ability to set a timeout on a request.

func (*SetNamespaceVariableParams) SetContext

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

SetContext adds the context to the set namespace variable params

func (*SetNamespaceVariableParams) SetData

func (o *SetNamespaceVariableParams) SetData(data string)

SetData adds the data to the set namespace variable params

func (*SetNamespaceVariableParams) SetDefaults

func (o *SetNamespaceVariableParams) SetDefaults()

SetDefaults hydrates default values in the set namespace variable params (not the query body).

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

func (*SetNamespaceVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set namespace variable params

func (*SetNamespaceVariableParams) SetNamespace

func (o *SetNamespaceVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the set namespace variable params

func (*SetNamespaceVariableParams) SetTimeout

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

SetTimeout adds the timeout to the set namespace variable params

func (*SetNamespaceVariableParams) SetVariable

func (o *SetNamespaceVariableParams) SetVariable(variable string)

SetVariable adds the variable to the set namespace variable params

func (*SetNamespaceVariableParams) WithContext

WithContext adds the context to the set namespace variable params

func (*SetNamespaceVariableParams) WithData

WithData adds the data to the set namespace variable params

func (*SetNamespaceVariableParams) WithDefaults

WithDefaults hydrates default values in the set namespace variable params (not the query body).

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

func (*SetNamespaceVariableParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the set namespace variable params

func (*SetNamespaceVariableParams) WithNamespace

func (o *SetNamespaceVariableParams) WithNamespace(namespace string) *SetNamespaceVariableParams

WithNamespace adds the namespace to the set namespace variable params

func (*SetNamespaceVariableParams) WithTimeout

WithTimeout adds the timeout to the set namespace variable params

func (*SetNamespaceVariableParams) WithVariable

WithVariable adds the variable to the set namespace variable params

func (*SetNamespaceVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetNamespaceVariableReader

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

SetNamespaceVariableReader is a Reader for the SetNamespaceVariable structure.

func (*SetNamespaceVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SetWorkflowVariableOK

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

successfully set workflow variable

func NewSetWorkflowVariableOK

func NewSetWorkflowVariableOK() *SetWorkflowVariableOK

NewSetWorkflowVariableOK creates a SetWorkflowVariableOK with default headers values

func (*SetWorkflowVariableOK) Error

func (o *SetWorkflowVariableOK) Error() string

type SetWorkflowVariableParams

type SetWorkflowVariableParams struct {

	/* Data.

	   Payload that contains variable data.
	*/
	Data string

	/* Namespace.

	   target namespace
	*/
	Namespace string

	/* Var.

	   target variable
	*/
	Var string

	/* Workflow.

	   path to target workflow
	*/
	Workflow string

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

SetWorkflowVariableParams contains all the parameters to send to the API endpoint

for the set workflow variable operation.

Typically these are written to a http.Request.

func NewSetWorkflowVariableParams

func NewSetWorkflowVariableParams() *SetWorkflowVariableParams

NewSetWorkflowVariableParams creates a new SetWorkflowVariableParams 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 NewSetWorkflowVariableParamsWithContext

func NewSetWorkflowVariableParamsWithContext(ctx context.Context) *SetWorkflowVariableParams

NewSetWorkflowVariableParamsWithContext creates a new SetWorkflowVariableParams object with the ability to set a context for a request.

func NewSetWorkflowVariableParamsWithHTTPClient

func NewSetWorkflowVariableParamsWithHTTPClient(client *http.Client) *SetWorkflowVariableParams

NewSetWorkflowVariableParamsWithHTTPClient creates a new SetWorkflowVariableParams object with the ability to set a custom HTTPClient for a request.

func NewSetWorkflowVariableParamsWithTimeout

func NewSetWorkflowVariableParamsWithTimeout(timeout time.Duration) *SetWorkflowVariableParams

NewSetWorkflowVariableParamsWithTimeout creates a new SetWorkflowVariableParams object with the ability to set a timeout on a request.

func (*SetWorkflowVariableParams) SetContext

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

SetContext adds the context to the set workflow variable params

func (*SetWorkflowVariableParams) SetData

func (o *SetWorkflowVariableParams) SetData(data string)

SetData adds the data to the set workflow variable params

func (*SetWorkflowVariableParams) SetDefaults

func (o *SetWorkflowVariableParams) SetDefaults()

SetDefaults hydrates default values in the set workflow variable params (not the query body).

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

func (*SetWorkflowVariableParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set workflow variable params

func (*SetWorkflowVariableParams) SetNamespace

func (o *SetWorkflowVariableParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the set workflow variable params

func (*SetWorkflowVariableParams) SetTimeout

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

SetTimeout adds the timeout to the set workflow variable params

func (*SetWorkflowVariableParams) SetVar

func (o *SetWorkflowVariableParams) SetVar(varVar string)

SetVar adds the var to the set workflow variable params

func (*SetWorkflowVariableParams) SetWorkflow

func (o *SetWorkflowVariableParams) SetWorkflow(workflow string)

SetWorkflow adds the workflow to the set workflow variable params

func (*SetWorkflowVariableParams) WithContext

WithContext adds the context to the set workflow variable params

func (*SetWorkflowVariableParams) WithData

WithData adds the data to the set workflow variable params

func (*SetWorkflowVariableParams) WithDefaults

WithDefaults hydrates default values in the set workflow variable params (not the query body).

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

func (*SetWorkflowVariableParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the set workflow variable params

func (*SetWorkflowVariableParams) WithNamespace

func (o *SetWorkflowVariableParams) WithNamespace(namespace string) *SetWorkflowVariableParams

WithNamespace adds the namespace to the set workflow variable params

func (*SetWorkflowVariableParams) WithTimeout

WithTimeout adds the timeout to the set workflow variable params

func (*SetWorkflowVariableParams) WithVar

WithVar adds the varVar to the set workflow variable params

func (*SetWorkflowVariableParams) WithWorkflow

func (o *SetWorkflowVariableParams) WithWorkflow(workflow string) *SetWorkflowVariableParams

WithWorkflow adds the workflow to the set workflow variable params

func (*SetWorkflowVariableParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SetWorkflowVariableReader

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

SetWorkflowVariableReader is a Reader for the SetWorkflowVariable structure.

func (*SetWorkflowVariableReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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