deployment_actions

package
v0.2.21 Latest Latest
Warning

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

Go to latest
Published: Jul 14, 2021 License: Apache-2.0 Imports: 10 Imported by: 1

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 deployment actions API

func (*Client) GetDeploymentActionUsingGET

func (a *Client) GetDeploymentActionUsingGET(params *GetDeploymentActionUsingGETParams, opts ...ClientOption) (*GetDeploymentActionUsingGETOK, error)

GetDeploymentActionUsingGET fetches deployment action

Returns an action for the deployment specified by its Deployment ID and Action ID.

func (*Client) GetDeploymentActionsUsingGET

func (a *Client) GetDeploymentActionsUsingGET(params *GetDeploymentActionsUsingGETParams, opts ...ClientOption) (*GetDeploymentActionsUsingGETOK, error)

GetDeploymentActionsUsingGET fetches deployment available actions

Returns the complete list of available actions that can be performed on a given deployment.

func (*Client) GetResourceActionUsingGET

func (a *Client) GetResourceActionUsingGET(params *GetResourceActionUsingGETParams, opts ...ClientOption) (*GetResourceActionUsingGETOK, error)

GetResourceActionUsingGET fetches resource action

Returns an action for the resource specified by its Resource ID and Action ID.

func (*Client) GetResourceActionsUsingGET

func (a *Client) GetResourceActionsUsingGET(params *GetResourceActionsUsingGETParams, opts ...ClientOption) (*GetResourceActionsUsingGETOK, error)

GetResourceActionsUsingGET fetches available resource actions

Returns the complete list of available actions that can be performed on a given resource.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) SubmitDeploymentActionRequestUsingPOST

func (a *Client) SubmitDeploymentActionRequestUsingPOST(params *SubmitDeploymentActionRequestUsingPOSTParams, opts ...ClientOption) (*SubmitDeploymentActionRequestUsingPOSTOK, error)

SubmitDeploymentActionRequestUsingPOST deployments action request

Submit a deployment action request

func (*Client) SubmitResourceActionRequestUsingPOST

func (a *Client) SubmitResourceActionRequestUsingPOST(params *SubmitResourceActionRequestUsingPOSTParams, opts ...ClientOption) (*SubmitResourceActionRequestUsingPOSTOK, error)

SubmitResourceActionRequestUsingPOST resources action request

Submit a resource action request.

type ClientOption added in v0.2.20

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService added in v0.2.18

type ClientService interface {
	GetDeploymentActionUsingGET(params *GetDeploymentActionUsingGETParams, opts ...ClientOption) (*GetDeploymentActionUsingGETOK, error)

	GetDeploymentActionsUsingGET(params *GetDeploymentActionsUsingGETParams, opts ...ClientOption) (*GetDeploymentActionsUsingGETOK, error)

	GetResourceActionUsingGET(params *GetResourceActionUsingGETParams, opts ...ClientOption) (*GetResourceActionUsingGETOK, error)

	GetResourceActionsUsingGET(params *GetResourceActionsUsingGETParams, opts ...ClientOption) (*GetResourceActionsUsingGETOK, error)

	SubmitDeploymentActionRequestUsingPOST(params *SubmitDeploymentActionRequestUsingPOSTParams, opts ...ClientOption) (*SubmitDeploymentActionRequestUsingPOSTOK, error)

	SubmitResourceActionRequestUsingPOST(params *SubmitResourceActionRequestUsingPOSTParams, opts ...ClientOption) (*SubmitResourceActionRequestUsingPOSTOK, 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 deployment actions API client.

type GetDeploymentActionUsingGETNotFound

type GetDeploymentActionUsingGETNotFound struct {
	Payload *models.Error
}
GetDeploymentActionUsingGETNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetDeploymentActionUsingGETNotFound

func NewGetDeploymentActionUsingGETNotFound() *GetDeploymentActionUsingGETNotFound

NewGetDeploymentActionUsingGETNotFound creates a GetDeploymentActionUsingGETNotFound with default headers values

func (*GetDeploymentActionUsingGETNotFound) Error

func (*GetDeploymentActionUsingGETNotFound) GetPayload added in v0.2.9

type GetDeploymentActionUsingGETOK

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

OK

func NewGetDeploymentActionUsingGETOK

func NewGetDeploymentActionUsingGETOK() *GetDeploymentActionUsingGETOK

NewGetDeploymentActionUsingGETOK creates a GetDeploymentActionUsingGETOK with default headers values

func (*GetDeploymentActionUsingGETOK) Error

func (*GetDeploymentActionUsingGETOK) GetPayload

type GetDeploymentActionUsingGETParams

type GetDeploymentActionUsingGETParams struct {

	/* ActionID.

	   Action ID
	*/
	ActionID string

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). If you do not specify explicitly an exact version, you will be calling the latest supported API version.
	*/
	APIVersion *string

	/* DeploymentID.

	   Deployment ID

	   Format: uuid
	*/
	DeploymentID strfmt.UUID

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

GetDeploymentActionUsingGETParams contains all the parameters to send to the API endpoint

for the get deployment action using g e t operation.

Typically these are written to a http.Request.

func NewGetDeploymentActionUsingGETParams

func NewGetDeploymentActionUsingGETParams() *GetDeploymentActionUsingGETParams

NewGetDeploymentActionUsingGETParams creates a new GetDeploymentActionUsingGETParams 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 NewGetDeploymentActionUsingGETParamsWithContext

func NewGetDeploymentActionUsingGETParamsWithContext(ctx context.Context) *GetDeploymentActionUsingGETParams

NewGetDeploymentActionUsingGETParamsWithContext creates a new GetDeploymentActionUsingGETParams object with the ability to set a context for a request.

func NewGetDeploymentActionUsingGETParamsWithHTTPClient

func NewGetDeploymentActionUsingGETParamsWithHTTPClient(client *http.Client) *GetDeploymentActionUsingGETParams

NewGetDeploymentActionUsingGETParamsWithHTTPClient creates a new GetDeploymentActionUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentActionUsingGETParamsWithTimeout

func NewGetDeploymentActionUsingGETParamsWithTimeout(timeout time.Duration) *GetDeploymentActionUsingGETParams

NewGetDeploymentActionUsingGETParamsWithTimeout creates a new GetDeploymentActionUsingGETParams object with the ability to set a timeout on a request.

func (*GetDeploymentActionUsingGETParams) SetAPIVersion added in v0.2.9

func (o *GetDeploymentActionUsingGETParams) SetAPIVersion(aPIVersion *string)

SetAPIVersion adds the apiVersion to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) SetActionID

func (o *GetDeploymentActionUsingGETParams) SetActionID(actionID string)

SetActionID adds the actionId to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) SetContext

SetContext adds the context to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) SetDefaults added in v0.2.20

func (o *GetDeploymentActionUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the get deployment action using get params (not the query body).

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

func (*GetDeploymentActionUsingGETParams) SetDeploymentID added in v0.2.21

func (o *GetDeploymentActionUsingGETParams) SetDeploymentID(deploymentID strfmt.UUID)

SetDeploymentID adds the deploymentId to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) WithAPIVersion added in v0.2.9

WithAPIVersion adds the aPIVersion to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) WithActionID

WithActionID adds the actionID to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) WithContext

WithContext adds the context to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the get deployment action using get params (not the query body).

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

func (*GetDeploymentActionUsingGETParams) WithDeploymentID added in v0.2.21

WithDeploymentID adds the deploymentID to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get deployment action using get params

func (*GetDeploymentActionUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentActionUsingGETReader

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

GetDeploymentActionUsingGETReader is a Reader for the GetDeploymentActionUsingGET structure.

func (*GetDeploymentActionUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentActionUsingGETUnauthorized

type GetDeploymentActionUsingGETUnauthorized struct {
}
GetDeploymentActionUsingGETUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetDeploymentActionUsingGETUnauthorized

func NewGetDeploymentActionUsingGETUnauthorized() *GetDeploymentActionUsingGETUnauthorized

NewGetDeploymentActionUsingGETUnauthorized creates a GetDeploymentActionUsingGETUnauthorized with default headers values

func (*GetDeploymentActionUsingGETUnauthorized) Error

type GetDeploymentActionsUsingGETNotFound

type GetDeploymentActionsUsingGETNotFound struct {
	Payload *models.Error
}
GetDeploymentActionsUsingGETNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetDeploymentActionsUsingGETNotFound

func NewGetDeploymentActionsUsingGETNotFound() *GetDeploymentActionsUsingGETNotFound

NewGetDeploymentActionsUsingGETNotFound creates a GetDeploymentActionsUsingGETNotFound with default headers values

func (*GetDeploymentActionsUsingGETNotFound) Error

func (*GetDeploymentActionsUsingGETNotFound) GetPayload added in v0.2.9

type GetDeploymentActionsUsingGETOK

type GetDeploymentActionsUsingGETOK struct {
	Payload []*models.ResourceAction
}
GetDeploymentActionsUsingGETOK describes a response with status code 200, with default header values.

OK

func NewGetDeploymentActionsUsingGETOK

func NewGetDeploymentActionsUsingGETOK() *GetDeploymentActionsUsingGETOK

NewGetDeploymentActionsUsingGETOK creates a GetDeploymentActionsUsingGETOK with default headers values

func (*GetDeploymentActionsUsingGETOK) Error

func (*GetDeploymentActionsUsingGETOK) GetPayload

type GetDeploymentActionsUsingGETParams

type GetDeploymentActionsUsingGETParams struct {

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). If you do not specify explicitly an exact version, you will be calling the latest supported API version.
	*/
	APIVersion *string

	/* DeploymentID.

	   Deployment ID

	   Format: uuid
	*/
	DeploymentID strfmt.UUID

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

GetDeploymentActionsUsingGETParams contains all the parameters to send to the API endpoint

for the get deployment actions using g e t operation.

Typically these are written to a http.Request.

func NewGetDeploymentActionsUsingGETParams

func NewGetDeploymentActionsUsingGETParams() *GetDeploymentActionsUsingGETParams

NewGetDeploymentActionsUsingGETParams creates a new GetDeploymentActionsUsingGETParams 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 NewGetDeploymentActionsUsingGETParamsWithContext

func NewGetDeploymentActionsUsingGETParamsWithContext(ctx context.Context) *GetDeploymentActionsUsingGETParams

NewGetDeploymentActionsUsingGETParamsWithContext creates a new GetDeploymentActionsUsingGETParams object with the ability to set a context for a request.

func NewGetDeploymentActionsUsingGETParamsWithHTTPClient

func NewGetDeploymentActionsUsingGETParamsWithHTTPClient(client *http.Client) *GetDeploymentActionsUsingGETParams

NewGetDeploymentActionsUsingGETParamsWithHTTPClient creates a new GetDeploymentActionsUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetDeploymentActionsUsingGETParamsWithTimeout

func NewGetDeploymentActionsUsingGETParamsWithTimeout(timeout time.Duration) *GetDeploymentActionsUsingGETParams

NewGetDeploymentActionsUsingGETParamsWithTimeout creates a new GetDeploymentActionsUsingGETParams object with the ability to set a timeout on a request.

func (*GetDeploymentActionsUsingGETParams) SetAPIVersion added in v0.2.9

func (o *GetDeploymentActionsUsingGETParams) SetAPIVersion(aPIVersion *string)

SetAPIVersion adds the apiVersion to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) SetContext

SetContext adds the context to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) SetDefaults added in v0.2.20

func (o *GetDeploymentActionsUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the get deployment actions using get params (not the query body).

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

func (*GetDeploymentActionsUsingGETParams) SetDeploymentID added in v0.2.21

func (o *GetDeploymentActionsUsingGETParams) SetDeploymentID(deploymentID strfmt.UUID)

SetDeploymentID adds the deploymentId to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) WithAPIVersion added in v0.2.9

WithAPIVersion adds the aPIVersion to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) WithContext

WithContext adds the context to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the get deployment actions using get params (not the query body).

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

func (*GetDeploymentActionsUsingGETParams) WithDeploymentID added in v0.2.21

WithDeploymentID adds the deploymentID to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get deployment actions using get params

func (*GetDeploymentActionsUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDeploymentActionsUsingGETReader

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

GetDeploymentActionsUsingGETReader is a Reader for the GetDeploymentActionsUsingGET structure.

func (*GetDeploymentActionsUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDeploymentActionsUsingGETUnauthorized

type GetDeploymentActionsUsingGETUnauthorized struct {
}
GetDeploymentActionsUsingGETUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetDeploymentActionsUsingGETUnauthorized

func NewGetDeploymentActionsUsingGETUnauthorized() *GetDeploymentActionsUsingGETUnauthorized

NewGetDeploymentActionsUsingGETUnauthorized creates a GetDeploymentActionsUsingGETUnauthorized with default headers values

func (*GetDeploymentActionsUsingGETUnauthorized) Error

type GetResourceActionUsingGETNotFound

type GetResourceActionUsingGETNotFound struct {
	Payload *models.Error
}
GetResourceActionUsingGETNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetResourceActionUsingGETNotFound

func NewGetResourceActionUsingGETNotFound() *GetResourceActionUsingGETNotFound

NewGetResourceActionUsingGETNotFound creates a GetResourceActionUsingGETNotFound with default headers values

func (*GetResourceActionUsingGETNotFound) Error

func (*GetResourceActionUsingGETNotFound) GetPayload added in v0.2.9

type GetResourceActionUsingGETOK

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

OK

func NewGetResourceActionUsingGETOK

func NewGetResourceActionUsingGETOK() *GetResourceActionUsingGETOK

NewGetResourceActionUsingGETOK creates a GetResourceActionUsingGETOK with default headers values

func (*GetResourceActionUsingGETOK) Error

func (*GetResourceActionUsingGETOK) GetPayload

type GetResourceActionUsingGETParams

type GetResourceActionUsingGETParams struct {

	/* ActionID.

	   Action ID
	*/
	ActionID string

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). If you do not specify explicitly an exact version, you will be calling the latest supported API version.
	*/
	APIVersion *string

	/* DeploymentID.

	   Deployment ID

	   Format: uuid
	*/
	DeploymentID strfmt.UUID

	/* ResourceID.

	   Resource ID

	   Format: uuid
	*/
	ResourceID strfmt.UUID

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

GetResourceActionUsingGETParams contains all the parameters to send to the API endpoint

for the get resource action using g e t operation.

Typically these are written to a http.Request.

func NewGetResourceActionUsingGETParams

func NewGetResourceActionUsingGETParams() *GetResourceActionUsingGETParams

NewGetResourceActionUsingGETParams creates a new GetResourceActionUsingGETParams 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 NewGetResourceActionUsingGETParamsWithContext

func NewGetResourceActionUsingGETParamsWithContext(ctx context.Context) *GetResourceActionUsingGETParams

NewGetResourceActionUsingGETParamsWithContext creates a new GetResourceActionUsingGETParams object with the ability to set a context for a request.

func NewGetResourceActionUsingGETParamsWithHTTPClient

func NewGetResourceActionUsingGETParamsWithHTTPClient(client *http.Client) *GetResourceActionUsingGETParams

NewGetResourceActionUsingGETParamsWithHTTPClient creates a new GetResourceActionUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetResourceActionUsingGETParamsWithTimeout

func NewGetResourceActionUsingGETParamsWithTimeout(timeout time.Duration) *GetResourceActionUsingGETParams

NewGetResourceActionUsingGETParamsWithTimeout creates a new GetResourceActionUsingGETParams object with the ability to set a timeout on a request.

func (*GetResourceActionUsingGETParams) SetAPIVersion added in v0.2.9

func (o *GetResourceActionUsingGETParams) SetAPIVersion(aPIVersion *string)

SetAPIVersion adds the apiVersion to the get resource action using get params

func (*GetResourceActionUsingGETParams) SetActionID

func (o *GetResourceActionUsingGETParams) SetActionID(actionID string)

SetActionID adds the actionId to the get resource action using get params

func (*GetResourceActionUsingGETParams) SetContext

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

SetContext adds the context to the get resource action using get params

func (*GetResourceActionUsingGETParams) SetDefaults added in v0.2.20

func (o *GetResourceActionUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the get resource action using get params (not the query body).

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

func (*GetResourceActionUsingGETParams) SetDeploymentID added in v0.2.21

func (o *GetResourceActionUsingGETParams) SetDeploymentID(deploymentID strfmt.UUID)

SetDeploymentID adds the deploymentId to the get resource action using get params

func (*GetResourceActionUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get resource action using get params

func (*GetResourceActionUsingGETParams) SetResourceID

func (o *GetResourceActionUsingGETParams) SetResourceID(resourceID strfmt.UUID)

SetResourceID adds the resourceId to the get resource action using get params

func (*GetResourceActionUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get resource action using get params

func (*GetResourceActionUsingGETParams) WithAPIVersion added in v0.2.9

WithAPIVersion adds the aPIVersion to the get resource action using get params

func (*GetResourceActionUsingGETParams) WithActionID

WithActionID adds the actionID to the get resource action using get params

func (*GetResourceActionUsingGETParams) WithContext

WithContext adds the context to the get resource action using get params

func (*GetResourceActionUsingGETParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the get resource action using get params (not the query body).

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

func (*GetResourceActionUsingGETParams) WithDeploymentID added in v0.2.21

WithDeploymentID adds the deploymentID to the get resource action using get params

func (*GetResourceActionUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get resource action using get params

func (*GetResourceActionUsingGETParams) WithResourceID

WithResourceID adds the resourceID to the get resource action using get params

func (*GetResourceActionUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get resource action using get params

func (*GetResourceActionUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetResourceActionUsingGETReader

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

GetResourceActionUsingGETReader is a Reader for the GetResourceActionUsingGET structure.

func (*GetResourceActionUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetResourceActionUsingGETUnauthorized

type GetResourceActionUsingGETUnauthorized struct {
}
GetResourceActionUsingGETUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetResourceActionUsingGETUnauthorized

func NewGetResourceActionUsingGETUnauthorized() *GetResourceActionUsingGETUnauthorized

NewGetResourceActionUsingGETUnauthorized creates a GetResourceActionUsingGETUnauthorized with default headers values

func (*GetResourceActionUsingGETUnauthorized) Error

type GetResourceActionsUsingGETNotFound

type GetResourceActionsUsingGETNotFound struct {
	Payload *models.Error
}
GetResourceActionsUsingGETNotFound describes a response with status code 404, with default header values.

Not Found

func NewGetResourceActionsUsingGETNotFound

func NewGetResourceActionsUsingGETNotFound() *GetResourceActionsUsingGETNotFound

NewGetResourceActionsUsingGETNotFound creates a GetResourceActionsUsingGETNotFound with default headers values

func (*GetResourceActionsUsingGETNotFound) Error

func (*GetResourceActionsUsingGETNotFound) GetPayload added in v0.2.9

type GetResourceActionsUsingGETOK

type GetResourceActionsUsingGETOK struct {
	Payload []*models.ResourceAction
}
GetResourceActionsUsingGETOK describes a response with status code 200, with default header values.

OK

func NewGetResourceActionsUsingGETOK

func NewGetResourceActionsUsingGETOK() *GetResourceActionsUsingGETOK

NewGetResourceActionsUsingGETOK creates a GetResourceActionsUsingGETOK with default headers values

func (*GetResourceActionsUsingGETOK) Error

func (*GetResourceActionsUsingGETOK) GetPayload

type GetResourceActionsUsingGETParams

type GetResourceActionsUsingGETParams struct {

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). If you do not specify explicitly an exact version, you will be calling the latest supported API version.
	*/
	APIVersion *string

	/* DeploymentID.

	   Deployment ID

	   Format: uuid
	*/
	DeploymentID strfmt.UUID

	/* ResourceID.

	   Resource ID

	   Format: uuid
	*/
	ResourceID strfmt.UUID

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

GetResourceActionsUsingGETParams contains all the parameters to send to the API endpoint

for the get resource actions using g e t operation.

Typically these are written to a http.Request.

func NewGetResourceActionsUsingGETParams

func NewGetResourceActionsUsingGETParams() *GetResourceActionsUsingGETParams

NewGetResourceActionsUsingGETParams creates a new GetResourceActionsUsingGETParams 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 NewGetResourceActionsUsingGETParamsWithContext

func NewGetResourceActionsUsingGETParamsWithContext(ctx context.Context) *GetResourceActionsUsingGETParams

NewGetResourceActionsUsingGETParamsWithContext creates a new GetResourceActionsUsingGETParams object with the ability to set a context for a request.

func NewGetResourceActionsUsingGETParamsWithHTTPClient

func NewGetResourceActionsUsingGETParamsWithHTTPClient(client *http.Client) *GetResourceActionsUsingGETParams

NewGetResourceActionsUsingGETParamsWithHTTPClient creates a new GetResourceActionsUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetResourceActionsUsingGETParamsWithTimeout

func NewGetResourceActionsUsingGETParamsWithTimeout(timeout time.Duration) *GetResourceActionsUsingGETParams

NewGetResourceActionsUsingGETParamsWithTimeout creates a new GetResourceActionsUsingGETParams object with the ability to set a timeout on a request.

func (*GetResourceActionsUsingGETParams) SetAPIVersion added in v0.2.9

func (o *GetResourceActionsUsingGETParams) SetAPIVersion(aPIVersion *string)

SetAPIVersion adds the apiVersion to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) SetContext

SetContext adds the context to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) SetDefaults added in v0.2.20

func (o *GetResourceActionsUsingGETParams) SetDefaults()

SetDefaults hydrates default values in the get resource actions using get params (not the query body).

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

func (*GetResourceActionsUsingGETParams) SetDeploymentID added in v0.2.21

func (o *GetResourceActionsUsingGETParams) SetDeploymentID(deploymentID strfmt.UUID)

SetDeploymentID adds the deploymentId to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) SetResourceID

func (o *GetResourceActionsUsingGETParams) SetResourceID(resourceID strfmt.UUID)

SetResourceID adds the resourceId to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) WithAPIVersion added in v0.2.9

WithAPIVersion adds the aPIVersion to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) WithContext

WithContext adds the context to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the get resource actions using get params (not the query body).

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

func (*GetResourceActionsUsingGETParams) WithDeploymentID added in v0.2.21

WithDeploymentID adds the deploymentID to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) WithResourceID

WithResourceID adds the resourceID to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get resource actions using get params

func (*GetResourceActionsUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetResourceActionsUsingGETReader

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

GetResourceActionsUsingGETReader is a Reader for the GetResourceActionsUsingGET structure.

func (*GetResourceActionsUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetResourceActionsUsingGETUnauthorized

type GetResourceActionsUsingGETUnauthorized struct {
}
GetResourceActionsUsingGETUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetResourceActionsUsingGETUnauthorized

func NewGetResourceActionsUsingGETUnauthorized() *GetResourceActionsUsingGETUnauthorized

NewGetResourceActionsUsingGETUnauthorized creates a GetResourceActionsUsingGETUnauthorized with default headers values

func (*GetResourceActionsUsingGETUnauthorized) Error

type SubmitDeploymentActionRequestUsingPOSTForbidden

type SubmitDeploymentActionRequestUsingPOSTForbidden struct {
}
SubmitDeploymentActionRequestUsingPOSTForbidden describes a response with status code 403, with default header values.

Forbidden

func NewSubmitDeploymentActionRequestUsingPOSTForbidden

func NewSubmitDeploymentActionRequestUsingPOSTForbidden() *SubmitDeploymentActionRequestUsingPOSTForbidden

NewSubmitDeploymentActionRequestUsingPOSTForbidden creates a SubmitDeploymentActionRequestUsingPOSTForbidden with default headers values

func (*SubmitDeploymentActionRequestUsingPOSTForbidden) Error

type SubmitDeploymentActionRequestUsingPOSTNotFound

type SubmitDeploymentActionRequestUsingPOSTNotFound struct {
	Payload *models.Error
}
SubmitDeploymentActionRequestUsingPOSTNotFound describes a response with status code 404, with default header values.

Not Found

func NewSubmitDeploymentActionRequestUsingPOSTNotFound

func NewSubmitDeploymentActionRequestUsingPOSTNotFound() *SubmitDeploymentActionRequestUsingPOSTNotFound

NewSubmitDeploymentActionRequestUsingPOSTNotFound creates a SubmitDeploymentActionRequestUsingPOSTNotFound with default headers values

func (*SubmitDeploymentActionRequestUsingPOSTNotFound) Error

func (*SubmitDeploymentActionRequestUsingPOSTNotFound) GetPayload added in v0.2.9

type SubmitDeploymentActionRequestUsingPOSTOK

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

OK

func NewSubmitDeploymentActionRequestUsingPOSTOK

func NewSubmitDeploymentActionRequestUsingPOSTOK() *SubmitDeploymentActionRequestUsingPOSTOK

NewSubmitDeploymentActionRequestUsingPOSTOK creates a SubmitDeploymentActionRequestUsingPOSTOK with default headers values

func (*SubmitDeploymentActionRequestUsingPOSTOK) Error

func (*SubmitDeploymentActionRequestUsingPOSTOK) GetPayload

type SubmitDeploymentActionRequestUsingPOSTParams

type SubmitDeploymentActionRequestUsingPOSTParams struct {

	/* ActionRequest.

	   actionRequest
	*/
	ActionRequest *models.ResourceActionRequest

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). If you do not specify explicitly an exact version, you will be calling the latest supported API version.
	*/
	APIVersion *string

	/* DeploymentID.

	   Deployment ID

	   Format: uuid
	*/
	DeploymentID strfmt.UUID

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

SubmitDeploymentActionRequestUsingPOSTParams contains all the parameters to send to the API endpoint

for the submit deployment action request using p o s t operation.

Typically these are written to a http.Request.

func NewSubmitDeploymentActionRequestUsingPOSTParams

func NewSubmitDeploymentActionRequestUsingPOSTParams() *SubmitDeploymentActionRequestUsingPOSTParams

NewSubmitDeploymentActionRequestUsingPOSTParams creates a new SubmitDeploymentActionRequestUsingPOSTParams 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 NewSubmitDeploymentActionRequestUsingPOSTParamsWithContext

func NewSubmitDeploymentActionRequestUsingPOSTParamsWithContext(ctx context.Context) *SubmitDeploymentActionRequestUsingPOSTParams

NewSubmitDeploymentActionRequestUsingPOSTParamsWithContext creates a new SubmitDeploymentActionRequestUsingPOSTParams object with the ability to set a context for a request.

func NewSubmitDeploymentActionRequestUsingPOSTParamsWithHTTPClient

func NewSubmitDeploymentActionRequestUsingPOSTParamsWithHTTPClient(client *http.Client) *SubmitDeploymentActionRequestUsingPOSTParams

NewSubmitDeploymentActionRequestUsingPOSTParamsWithHTTPClient creates a new SubmitDeploymentActionRequestUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewSubmitDeploymentActionRequestUsingPOSTParamsWithTimeout

func NewSubmitDeploymentActionRequestUsingPOSTParamsWithTimeout(timeout time.Duration) *SubmitDeploymentActionRequestUsingPOSTParams

NewSubmitDeploymentActionRequestUsingPOSTParamsWithTimeout creates a new SubmitDeploymentActionRequestUsingPOSTParams object with the ability to set a timeout on a request.

func (*SubmitDeploymentActionRequestUsingPOSTParams) SetAPIVersion added in v0.2.9

func (o *SubmitDeploymentActionRequestUsingPOSTParams) SetAPIVersion(aPIVersion *string)

SetAPIVersion adds the apiVersion to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) SetActionRequest

SetActionRequest adds the actionRequest to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) SetContext

SetContext adds the context to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) SetDefaults added in v0.2.20

SetDefaults hydrates default values in the submit deployment action request using p o s t params (not the query body).

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

func (*SubmitDeploymentActionRequestUsingPOSTParams) SetDeploymentID added in v0.2.21

func (o *SubmitDeploymentActionRequestUsingPOSTParams) SetDeploymentID(deploymentID strfmt.UUID)

SetDeploymentID adds the deploymentId to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) SetTimeout

SetTimeout adds the timeout to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) WithAPIVersion added in v0.2.9

WithAPIVersion adds the aPIVersion to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) WithActionRequest

WithActionRequest adds the actionRequest to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) WithContext

WithContext adds the context to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the submit deployment action request using p o s t params (not the query body).

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

func (*SubmitDeploymentActionRequestUsingPOSTParams) WithDeploymentID added in v0.2.21

WithDeploymentID adds the deploymentID to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the submit deployment action request using p o s t params

func (*SubmitDeploymentActionRequestUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SubmitDeploymentActionRequestUsingPOSTReader

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

SubmitDeploymentActionRequestUsingPOSTReader is a Reader for the SubmitDeploymentActionRequestUsingPOST structure.

func (*SubmitDeploymentActionRequestUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SubmitDeploymentActionRequestUsingPOSTUnauthorized

type SubmitDeploymentActionRequestUsingPOSTUnauthorized struct {
}
SubmitDeploymentActionRequestUsingPOSTUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewSubmitDeploymentActionRequestUsingPOSTUnauthorized

func NewSubmitDeploymentActionRequestUsingPOSTUnauthorized() *SubmitDeploymentActionRequestUsingPOSTUnauthorized

NewSubmitDeploymentActionRequestUsingPOSTUnauthorized creates a SubmitDeploymentActionRequestUsingPOSTUnauthorized with default headers values

func (*SubmitDeploymentActionRequestUsingPOSTUnauthorized) Error

type SubmitResourceActionRequestUsingPOSTForbidden

type SubmitResourceActionRequestUsingPOSTForbidden struct {
}
SubmitResourceActionRequestUsingPOSTForbidden describes a response with status code 403, with default header values.

Forbidden

func NewSubmitResourceActionRequestUsingPOSTForbidden

func NewSubmitResourceActionRequestUsingPOSTForbidden() *SubmitResourceActionRequestUsingPOSTForbidden

NewSubmitResourceActionRequestUsingPOSTForbidden creates a SubmitResourceActionRequestUsingPOSTForbidden with default headers values

func (*SubmitResourceActionRequestUsingPOSTForbidden) Error

type SubmitResourceActionRequestUsingPOSTNotFound

type SubmitResourceActionRequestUsingPOSTNotFound struct {
	Payload *models.Error
}
SubmitResourceActionRequestUsingPOSTNotFound describes a response with status code 404, with default header values.

Not Found

func NewSubmitResourceActionRequestUsingPOSTNotFound

func NewSubmitResourceActionRequestUsingPOSTNotFound() *SubmitResourceActionRequestUsingPOSTNotFound

NewSubmitResourceActionRequestUsingPOSTNotFound creates a SubmitResourceActionRequestUsingPOSTNotFound with default headers values

func (*SubmitResourceActionRequestUsingPOSTNotFound) Error

func (*SubmitResourceActionRequestUsingPOSTNotFound) GetPayload added in v0.2.9

type SubmitResourceActionRequestUsingPOSTOK

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

OK

func NewSubmitResourceActionRequestUsingPOSTOK

func NewSubmitResourceActionRequestUsingPOSTOK() *SubmitResourceActionRequestUsingPOSTOK

NewSubmitResourceActionRequestUsingPOSTOK creates a SubmitResourceActionRequestUsingPOSTOK with default headers values

func (*SubmitResourceActionRequestUsingPOSTOK) Error

func (*SubmitResourceActionRequestUsingPOSTOK) GetPayload

type SubmitResourceActionRequestUsingPOSTParams

type SubmitResourceActionRequestUsingPOSTParams struct {

	/* ActionRequest.

	   actionRequest
	*/
	ActionRequest *models.ResourceActionRequest

	/* APIVersion.

	   The version of the API in yyyy-MM-dd format (UTC). If you do not specify explicitly an exact version, you will be calling the latest supported API version.
	*/
	APIVersion *string

	/* DeploymentID.

	   Deployment ID

	   Format: uuid
	*/
	DeploymentID strfmt.UUID

	/* ResourceID.

	   Resource ID

	   Format: uuid
	*/
	ResourceID strfmt.UUID

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

SubmitResourceActionRequestUsingPOSTParams contains all the parameters to send to the API endpoint

for the submit resource action request using p o s t operation.

Typically these are written to a http.Request.

func NewSubmitResourceActionRequestUsingPOSTParams

func NewSubmitResourceActionRequestUsingPOSTParams() *SubmitResourceActionRequestUsingPOSTParams

NewSubmitResourceActionRequestUsingPOSTParams creates a new SubmitResourceActionRequestUsingPOSTParams 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 NewSubmitResourceActionRequestUsingPOSTParamsWithContext

func NewSubmitResourceActionRequestUsingPOSTParamsWithContext(ctx context.Context) *SubmitResourceActionRequestUsingPOSTParams

NewSubmitResourceActionRequestUsingPOSTParamsWithContext creates a new SubmitResourceActionRequestUsingPOSTParams object with the ability to set a context for a request.

func NewSubmitResourceActionRequestUsingPOSTParamsWithHTTPClient

func NewSubmitResourceActionRequestUsingPOSTParamsWithHTTPClient(client *http.Client) *SubmitResourceActionRequestUsingPOSTParams

NewSubmitResourceActionRequestUsingPOSTParamsWithHTTPClient creates a new SubmitResourceActionRequestUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewSubmitResourceActionRequestUsingPOSTParamsWithTimeout

func NewSubmitResourceActionRequestUsingPOSTParamsWithTimeout(timeout time.Duration) *SubmitResourceActionRequestUsingPOSTParams

NewSubmitResourceActionRequestUsingPOSTParamsWithTimeout creates a new SubmitResourceActionRequestUsingPOSTParams object with the ability to set a timeout on a request.

func (*SubmitResourceActionRequestUsingPOSTParams) SetAPIVersion added in v0.2.9

func (o *SubmitResourceActionRequestUsingPOSTParams) SetAPIVersion(aPIVersion *string)

SetAPIVersion adds the apiVersion to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) SetActionRequest

func (o *SubmitResourceActionRequestUsingPOSTParams) SetActionRequest(actionRequest *models.ResourceActionRequest)

SetActionRequest adds the actionRequest to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) SetContext

SetContext adds the context to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) SetDefaults added in v0.2.20

SetDefaults hydrates default values in the submit resource action request using p o s t params (not the query body).

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

func (*SubmitResourceActionRequestUsingPOSTParams) SetDeploymentID added in v0.2.21

func (o *SubmitResourceActionRequestUsingPOSTParams) SetDeploymentID(deploymentID strfmt.UUID)

SetDeploymentID adds the deploymentId to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) SetResourceID

func (o *SubmitResourceActionRequestUsingPOSTParams) SetResourceID(resourceID strfmt.UUID)

SetResourceID adds the resourceId to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) SetTimeout

SetTimeout adds the timeout to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) WithAPIVersion added in v0.2.9

WithAPIVersion adds the aPIVersion to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) WithActionRequest

WithActionRequest adds the actionRequest to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) WithContext

WithContext adds the context to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the submit resource action request using p o s t params (not the query body).

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

func (*SubmitResourceActionRequestUsingPOSTParams) WithDeploymentID added in v0.2.21

WithDeploymentID adds the deploymentID to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) WithResourceID

WithResourceID adds the resourceID to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the submit resource action request using p o s t params

func (*SubmitResourceActionRequestUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SubmitResourceActionRequestUsingPOSTReader

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

SubmitResourceActionRequestUsingPOSTReader is a Reader for the SubmitResourceActionRequestUsingPOST structure.

func (*SubmitResourceActionRequestUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SubmitResourceActionRequestUsingPOSTUnauthorized

type SubmitResourceActionRequestUsingPOSTUnauthorized struct {
}
SubmitResourceActionRequestUsingPOSTUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewSubmitResourceActionRequestUsingPOSTUnauthorized

func NewSubmitResourceActionRequestUsingPOSTUnauthorized() *SubmitResourceActionRequestUsingPOSTUnauthorized

NewSubmitResourceActionRequestUsingPOSTUnauthorized creates a SubmitResourceActionRequestUsingPOSTUnauthorized with default headers values

func (*SubmitResourceActionRequestUsingPOSTUnauthorized) Error

Jump to

Keyboard shortcuts

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