scripts

package
v0.0.0-...-e2f0fdc Latest Latest
Warning

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

Go to latest
Published: Apr 25, 2023 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API interface {
	/*
	   GetScript gets a script
	*/
	GetScript(ctx context.Context, params *GetScriptParams) (*GetScriptOK, error)
	/*
	   GetScriptPage gets a page
	*/
	GetScriptPage(ctx context.Context, params *GetScriptPageParams) (*GetScriptPageOK, error)
	/*
	   GetScriptPages gets the list of pages
	*/
	GetScriptPages(ctx context.Context, params *GetScriptPagesParams) (*GetScriptPagesOK, error)
	/*
	   GetScripts gets the list of scripts
	*/
	GetScripts(ctx context.Context, params *GetScriptsParams) (*GetScriptsOK, error)
	/*
	   GetScriptsDivisionviews gets the metadata for a list of scripts
	*/
	GetScriptsDivisionviews(ctx context.Context, params *GetScriptsDivisionviewsParams) (*GetScriptsDivisionviewsOK, error)
	/*
	   GetScriptsPublished gets the published scripts
	*/
	GetScriptsPublished(ctx context.Context, params *GetScriptsPublishedParams) (*GetScriptsPublishedOK, error)
	/*
	   GetScriptsPublishedDivisionviews gets the published scripts metadata
	*/
	GetScriptsPublishedDivisionviews(ctx context.Context, params *GetScriptsPublishedDivisionviewsParams) (*GetScriptsPublishedDivisionviewsOK, error)
	/*
	   GetScriptsPublishedScriptID gets the published script
	*/
	GetScriptsPublishedScriptID(ctx context.Context, params *GetScriptsPublishedScriptIDParams) (*GetScriptsPublishedScriptIDOK, error)
	/*
	   GetScriptsPublishedScriptIDPage gets the published page
	*/
	GetScriptsPublishedScriptIDPage(ctx context.Context, params *GetScriptsPublishedScriptIDPageParams) (*GetScriptsPublishedScriptIDPageOK, error)
	/*
	   GetScriptsPublishedScriptIDPages gets the list of published pages
	*/
	GetScriptsPublishedScriptIDPages(ctx context.Context, params *GetScriptsPublishedScriptIDPagesParams) (*GetScriptsPublishedScriptIDPagesOK, error)
	/*
	   GetScriptsPublishedScriptIDVariables gets the published variables
	*/
	GetScriptsPublishedScriptIDVariables(ctx context.Context, params *GetScriptsPublishedScriptIDVariablesParams) (*GetScriptsPublishedScriptIDVariablesOK, error)
	/*
	   GetScriptsUploadStatus gets the upload status of an imported script
	*/
	GetScriptsUploadStatus(ctx context.Context, params *GetScriptsUploadStatusParams) (*GetScriptsUploadStatusOK, error)
	/*
	   PostScriptExport exports a script via download service
	*/
	PostScriptExport(ctx context.Context, params *PostScriptExportParams) (*PostScriptExportOK, error)
}

API is the interface of the scripts client

type Client

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

Client for scripts API

func New

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

New creates a new scripts API client.

func (*Client) GetScript

func (a *Client) GetScript(ctx context.Context, params *GetScriptParams) (*GetScriptOK, error)

GetScript gets a script

func (*Client) GetScriptPage

func (a *Client) GetScriptPage(ctx context.Context, params *GetScriptPageParams) (*GetScriptPageOK, error)

GetScriptPage gets a page

func (*Client) GetScriptPages

func (a *Client) GetScriptPages(ctx context.Context, params *GetScriptPagesParams) (*GetScriptPagesOK, error)

GetScriptPages gets the list of pages

func (*Client) GetScripts

func (a *Client) GetScripts(ctx context.Context, params *GetScriptsParams) (*GetScriptsOK, error)

GetScripts gets the list of scripts

func (*Client) GetScriptsDivisionviews

func (a *Client) GetScriptsDivisionviews(ctx context.Context, params *GetScriptsDivisionviewsParams) (*GetScriptsDivisionviewsOK, error)

GetScriptsDivisionviews gets the metadata for a list of scripts

func (*Client) GetScriptsPublished

func (a *Client) GetScriptsPublished(ctx context.Context, params *GetScriptsPublishedParams) (*GetScriptsPublishedOK, error)

GetScriptsPublished gets the published scripts

func (*Client) GetScriptsPublishedDivisionviews

func (a *Client) GetScriptsPublishedDivisionviews(ctx context.Context, params *GetScriptsPublishedDivisionviewsParams) (*GetScriptsPublishedDivisionviewsOK, error)

GetScriptsPublishedDivisionviews gets the published scripts metadata

func (*Client) GetScriptsPublishedScriptID

func (a *Client) GetScriptsPublishedScriptID(ctx context.Context, params *GetScriptsPublishedScriptIDParams) (*GetScriptsPublishedScriptIDOK, error)

GetScriptsPublishedScriptID gets the published script

func (*Client) GetScriptsPublishedScriptIDPage

func (a *Client) GetScriptsPublishedScriptIDPage(ctx context.Context, params *GetScriptsPublishedScriptIDPageParams) (*GetScriptsPublishedScriptIDPageOK, error)

GetScriptsPublishedScriptIDPage gets the published page

func (*Client) GetScriptsPublishedScriptIDPages

func (a *Client) GetScriptsPublishedScriptIDPages(ctx context.Context, params *GetScriptsPublishedScriptIDPagesParams) (*GetScriptsPublishedScriptIDPagesOK, error)

GetScriptsPublishedScriptIDPages gets the list of published pages

func (*Client) GetScriptsPublishedScriptIDVariables

func (a *Client) GetScriptsPublishedScriptIDVariables(ctx context.Context, params *GetScriptsPublishedScriptIDVariablesParams) (*GetScriptsPublishedScriptIDVariablesOK, error)

GetScriptsPublishedScriptIDVariables gets the published variables

func (*Client) GetScriptsUploadStatus

func (a *Client) GetScriptsUploadStatus(ctx context.Context, params *GetScriptsUploadStatusParams) (*GetScriptsUploadStatusOK, error)

GetScriptsUploadStatus gets the upload status of an imported script

func (*Client) PostScriptExport

func (a *Client) PostScriptExport(ctx context.Context, params *PostScriptExportParams) (*PostScriptExportOK, error)

PostScriptExport exports a script via download service

type GetScriptBadRequest

type GetScriptBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptBadRequest

func NewGetScriptBadRequest() *GetScriptBadRequest

NewGetScriptBadRequest creates a GetScriptBadRequest with default headers values

func (*GetScriptBadRequest) Error

func (o *GetScriptBadRequest) Error() string

func (*GetScriptBadRequest) GetPayload

func (o *GetScriptBadRequest) GetPayload() *models.ErrorBody

func (*GetScriptBadRequest) IsClientError

func (o *GetScriptBadRequest) IsClientError() bool

IsClientError returns true when this get script bad request response has a 4xx status code

func (*GetScriptBadRequest) IsCode

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

IsCode returns true when this get script bad request response a status code equal to that given

func (*GetScriptBadRequest) IsRedirect

func (o *GetScriptBadRequest) IsRedirect() bool

IsRedirect returns true when this get script bad request response has a 3xx status code

func (*GetScriptBadRequest) IsServerError

func (o *GetScriptBadRequest) IsServerError() bool

IsServerError returns true when this get script bad request response has a 5xx status code

func (*GetScriptBadRequest) IsSuccess

func (o *GetScriptBadRequest) IsSuccess() bool

IsSuccess returns true when this get script bad request response has a 2xx status code

func (*GetScriptBadRequest) String

func (o *GetScriptBadRequest) String() string

type GetScriptForbidden

type GetScriptForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptForbidden

func NewGetScriptForbidden() *GetScriptForbidden

NewGetScriptForbidden creates a GetScriptForbidden with default headers values

func (*GetScriptForbidden) Error

func (o *GetScriptForbidden) Error() string

func (*GetScriptForbidden) GetPayload

func (o *GetScriptForbidden) GetPayload() *models.ErrorBody

func (*GetScriptForbidden) IsClientError

func (o *GetScriptForbidden) IsClientError() bool

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

func (*GetScriptForbidden) IsCode

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

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

func (*GetScriptForbidden) IsRedirect

func (o *GetScriptForbidden) IsRedirect() bool

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

func (*GetScriptForbidden) IsServerError

func (o *GetScriptForbidden) IsServerError() bool

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

func (*GetScriptForbidden) IsSuccess

func (o *GetScriptForbidden) IsSuccess() bool

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

func (*GetScriptForbidden) String

func (o *GetScriptForbidden) String() string

type GetScriptGatewayTimeout

type GetScriptGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptGatewayTimeout

func NewGetScriptGatewayTimeout() *GetScriptGatewayTimeout

NewGetScriptGatewayTimeout creates a GetScriptGatewayTimeout with default headers values

func (*GetScriptGatewayTimeout) Error

func (o *GetScriptGatewayTimeout) Error() string

func (*GetScriptGatewayTimeout) GetPayload

func (o *GetScriptGatewayTimeout) GetPayload() *models.ErrorBody

func (*GetScriptGatewayTimeout) IsClientError

func (o *GetScriptGatewayTimeout) IsClientError() bool

IsClientError returns true when this get script gateway timeout response has a 4xx status code

func (*GetScriptGatewayTimeout) IsCode

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

IsCode returns true when this get script gateway timeout response a status code equal to that given

func (*GetScriptGatewayTimeout) IsRedirect

func (o *GetScriptGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get script gateway timeout response has a 3xx status code

func (*GetScriptGatewayTimeout) IsServerError

func (o *GetScriptGatewayTimeout) IsServerError() bool

IsServerError returns true when this get script gateway timeout response has a 5xx status code

func (*GetScriptGatewayTimeout) IsSuccess

func (o *GetScriptGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get script gateway timeout response has a 2xx status code

func (*GetScriptGatewayTimeout) String

func (o *GetScriptGatewayTimeout) String() string

type GetScriptInternalServerError

type GetScriptInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptInternalServerError

func NewGetScriptInternalServerError() *GetScriptInternalServerError

NewGetScriptInternalServerError creates a GetScriptInternalServerError with default headers values

func (*GetScriptInternalServerError) Error

func (*GetScriptInternalServerError) GetPayload

func (*GetScriptInternalServerError) IsClientError

func (o *GetScriptInternalServerError) IsClientError() bool

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

func (*GetScriptInternalServerError) IsCode

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

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

func (*GetScriptInternalServerError) IsRedirect

func (o *GetScriptInternalServerError) IsRedirect() bool

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

func (*GetScriptInternalServerError) IsServerError

func (o *GetScriptInternalServerError) IsServerError() bool

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

func (*GetScriptInternalServerError) IsSuccess

func (o *GetScriptInternalServerError) IsSuccess() bool

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

func (*GetScriptInternalServerError) String

type GetScriptNotFound

type GetScriptNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptNotFound

func NewGetScriptNotFound() *GetScriptNotFound

NewGetScriptNotFound creates a GetScriptNotFound with default headers values

func (*GetScriptNotFound) Error

func (o *GetScriptNotFound) Error() string

func (*GetScriptNotFound) GetPayload

func (o *GetScriptNotFound) GetPayload() *models.ErrorBody

func (*GetScriptNotFound) IsClientError

func (o *GetScriptNotFound) IsClientError() bool

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

func (*GetScriptNotFound) IsCode

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

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

func (*GetScriptNotFound) IsRedirect

func (o *GetScriptNotFound) IsRedirect() bool

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

func (*GetScriptNotFound) IsServerError

func (o *GetScriptNotFound) IsServerError() bool

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

func (*GetScriptNotFound) IsSuccess

func (o *GetScriptNotFound) IsSuccess() bool

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

func (*GetScriptNotFound) String

func (o *GetScriptNotFound) String() string

type GetScriptOK

type GetScriptOK struct {
	Payload *models.Script
}

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

successful operation

func NewGetScriptOK

func NewGetScriptOK() *GetScriptOK

NewGetScriptOK creates a GetScriptOK with default headers values

func (*GetScriptOK) Error

func (o *GetScriptOK) Error() string

func (*GetScriptOK) GetPayload

func (o *GetScriptOK) GetPayload() *models.Script

func (*GetScriptOK) IsClientError

func (o *GetScriptOK) IsClientError() bool

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

func (*GetScriptOK) IsCode

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

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

func (*GetScriptOK) IsRedirect

func (o *GetScriptOK) IsRedirect() bool

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

func (*GetScriptOK) IsServerError

func (o *GetScriptOK) IsServerError() bool

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

func (*GetScriptOK) IsSuccess

func (o *GetScriptOK) IsSuccess() bool

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

func (*GetScriptOK) String

func (o *GetScriptOK) String() string

type GetScriptPageBadRequest

type GetScriptPageBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptPageBadRequest

func NewGetScriptPageBadRequest() *GetScriptPageBadRequest

NewGetScriptPageBadRequest creates a GetScriptPageBadRequest with default headers values

func (*GetScriptPageBadRequest) Error

func (o *GetScriptPageBadRequest) Error() string

func (*GetScriptPageBadRequest) GetPayload

func (o *GetScriptPageBadRequest) GetPayload() *models.ErrorBody

func (*GetScriptPageBadRequest) IsClientError

func (o *GetScriptPageBadRequest) IsClientError() bool

IsClientError returns true when this get script page bad request response has a 4xx status code

func (*GetScriptPageBadRequest) IsCode

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

IsCode returns true when this get script page bad request response a status code equal to that given

func (*GetScriptPageBadRequest) IsRedirect

func (o *GetScriptPageBadRequest) IsRedirect() bool

IsRedirect returns true when this get script page bad request response has a 3xx status code

func (*GetScriptPageBadRequest) IsServerError

func (o *GetScriptPageBadRequest) IsServerError() bool

IsServerError returns true when this get script page bad request response has a 5xx status code

func (*GetScriptPageBadRequest) IsSuccess

func (o *GetScriptPageBadRequest) IsSuccess() bool

IsSuccess returns true when this get script page bad request response has a 2xx status code

func (*GetScriptPageBadRequest) String

func (o *GetScriptPageBadRequest) String() string

type GetScriptPageForbidden

type GetScriptPageForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptPageForbidden

func NewGetScriptPageForbidden() *GetScriptPageForbidden

NewGetScriptPageForbidden creates a GetScriptPageForbidden with default headers values

func (*GetScriptPageForbidden) Error

func (o *GetScriptPageForbidden) Error() string

func (*GetScriptPageForbidden) GetPayload

func (o *GetScriptPageForbidden) GetPayload() *models.ErrorBody

func (*GetScriptPageForbidden) IsClientError

func (o *GetScriptPageForbidden) IsClientError() bool

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

func (*GetScriptPageForbidden) IsCode

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

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

func (*GetScriptPageForbidden) IsRedirect

func (o *GetScriptPageForbidden) IsRedirect() bool

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

func (*GetScriptPageForbidden) IsServerError

func (o *GetScriptPageForbidden) IsServerError() bool

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

func (*GetScriptPageForbidden) IsSuccess

func (o *GetScriptPageForbidden) IsSuccess() bool

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

func (*GetScriptPageForbidden) String

func (o *GetScriptPageForbidden) String() string

type GetScriptPageGatewayTimeout

type GetScriptPageGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptPageGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptPageGatewayTimeout

func NewGetScriptPageGatewayTimeout() *GetScriptPageGatewayTimeout

NewGetScriptPageGatewayTimeout creates a GetScriptPageGatewayTimeout with default headers values

func (*GetScriptPageGatewayTimeout) Error

func (*GetScriptPageGatewayTimeout) GetPayload

func (o *GetScriptPageGatewayTimeout) GetPayload() *models.ErrorBody

func (*GetScriptPageGatewayTimeout) IsClientError

func (o *GetScriptPageGatewayTimeout) IsClientError() bool

IsClientError returns true when this get script page gateway timeout response has a 4xx status code

func (*GetScriptPageGatewayTimeout) IsCode

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

IsCode returns true when this get script page gateway timeout response a status code equal to that given

func (*GetScriptPageGatewayTimeout) IsRedirect

func (o *GetScriptPageGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get script page gateway timeout response has a 3xx status code

func (*GetScriptPageGatewayTimeout) IsServerError

func (o *GetScriptPageGatewayTimeout) IsServerError() bool

IsServerError returns true when this get script page gateway timeout response has a 5xx status code

func (*GetScriptPageGatewayTimeout) IsSuccess

func (o *GetScriptPageGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get script page gateway timeout response has a 2xx status code

func (*GetScriptPageGatewayTimeout) String

func (o *GetScriptPageGatewayTimeout) String() string

type GetScriptPageInternalServerError

type GetScriptPageInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptPageInternalServerError

func NewGetScriptPageInternalServerError() *GetScriptPageInternalServerError

NewGetScriptPageInternalServerError creates a GetScriptPageInternalServerError with default headers values

func (*GetScriptPageInternalServerError) Error

func (*GetScriptPageInternalServerError) GetPayload

func (*GetScriptPageInternalServerError) IsClientError

func (o *GetScriptPageInternalServerError) IsClientError() bool

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

func (*GetScriptPageInternalServerError) IsCode

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

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

func (*GetScriptPageInternalServerError) IsRedirect

func (o *GetScriptPageInternalServerError) IsRedirect() bool

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

func (*GetScriptPageInternalServerError) IsServerError

func (o *GetScriptPageInternalServerError) IsServerError() bool

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

func (*GetScriptPageInternalServerError) IsSuccess

func (o *GetScriptPageInternalServerError) IsSuccess() bool

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

func (*GetScriptPageInternalServerError) String

type GetScriptPageNotFound

type GetScriptPageNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptPageNotFound

func NewGetScriptPageNotFound() *GetScriptPageNotFound

NewGetScriptPageNotFound creates a GetScriptPageNotFound with default headers values

func (*GetScriptPageNotFound) Error

func (o *GetScriptPageNotFound) Error() string

func (*GetScriptPageNotFound) GetPayload

func (o *GetScriptPageNotFound) GetPayload() *models.ErrorBody

func (*GetScriptPageNotFound) IsClientError

func (o *GetScriptPageNotFound) IsClientError() bool

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

func (*GetScriptPageNotFound) IsCode

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

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

func (*GetScriptPageNotFound) IsRedirect

func (o *GetScriptPageNotFound) IsRedirect() bool

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

func (*GetScriptPageNotFound) IsServerError

func (o *GetScriptPageNotFound) IsServerError() bool

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

func (*GetScriptPageNotFound) IsSuccess

func (o *GetScriptPageNotFound) IsSuccess() bool

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

func (*GetScriptPageNotFound) String

func (o *GetScriptPageNotFound) String() string

type GetScriptPageOK

type GetScriptPageOK struct {
	Payload *models.Page
}

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

successful operation

func NewGetScriptPageOK

func NewGetScriptPageOK() *GetScriptPageOK

NewGetScriptPageOK creates a GetScriptPageOK with default headers values

func (*GetScriptPageOK) Error

func (o *GetScriptPageOK) Error() string

func (*GetScriptPageOK) GetPayload

func (o *GetScriptPageOK) GetPayload() *models.Page

func (*GetScriptPageOK) IsClientError

func (o *GetScriptPageOK) IsClientError() bool

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

func (*GetScriptPageOK) IsCode

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

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

func (*GetScriptPageOK) IsRedirect

func (o *GetScriptPageOK) IsRedirect() bool

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

func (*GetScriptPageOK) IsServerError

func (o *GetScriptPageOK) IsServerError() bool

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

func (*GetScriptPageOK) IsSuccess

func (o *GetScriptPageOK) IsSuccess() bool

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

func (*GetScriptPageOK) String

func (o *GetScriptPageOK) String() string

type GetScriptPageParams

type GetScriptPageParams struct {

	/* PageID.

	   Page ID
	*/
	PageID string

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

	/* ScriptID.

	   Script ID
	*/
	ScriptID string

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

GetScriptPageParams contains all the parameters to send to the API endpoint

for the get script page operation.

Typically these are written to a http.Request.

func NewGetScriptPageParams

func NewGetScriptPageParams() *GetScriptPageParams

NewGetScriptPageParams creates a new GetScriptPageParams 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 NewGetScriptPageParamsWithContext

func NewGetScriptPageParamsWithContext(ctx context.Context) *GetScriptPageParams

NewGetScriptPageParamsWithContext creates a new GetScriptPageParams object with the ability to set a context for a request.

func NewGetScriptPageParamsWithHTTPClient

func NewGetScriptPageParamsWithHTTPClient(client *http.Client) *GetScriptPageParams

NewGetScriptPageParamsWithHTTPClient creates a new GetScriptPageParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptPageParamsWithTimeout

func NewGetScriptPageParamsWithTimeout(timeout time.Duration) *GetScriptPageParams

NewGetScriptPageParamsWithTimeout creates a new GetScriptPageParams object with the ability to set a timeout on a request.

func (*GetScriptPageParams) SetContext

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

SetContext adds the context to the get script page params

func (*GetScriptPageParams) SetDefaults

func (o *GetScriptPageParams) SetDefaults()

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

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

func (*GetScriptPageParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get script page params

func (*GetScriptPageParams) SetPageID

func (o *GetScriptPageParams) SetPageID(pageID string)

SetPageID adds the pageId to the get script page params

func (*GetScriptPageParams) SetScriptDataVersion

func (o *GetScriptPageParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get script page params

func (*GetScriptPageParams) SetScriptID

func (o *GetScriptPageParams) SetScriptID(scriptID string)

SetScriptID adds the scriptId to the get script page params

func (*GetScriptPageParams) SetTimeout

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

SetTimeout adds the timeout to the get script page params

func (*GetScriptPageParams) WithContext

WithContext adds the context to the get script page params

func (*GetScriptPageParams) WithDefaults

func (o *GetScriptPageParams) WithDefaults() *GetScriptPageParams

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

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

func (*GetScriptPageParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get script page params

func (*GetScriptPageParams) WithPageID

func (o *GetScriptPageParams) WithPageID(pageID string) *GetScriptPageParams

WithPageID adds the pageID to the get script page params

func (*GetScriptPageParams) WithScriptDataVersion

func (o *GetScriptPageParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptPageParams

WithScriptDataVersion adds the scriptDataVersion to the get script page params

func (*GetScriptPageParams) WithScriptID

func (o *GetScriptPageParams) WithScriptID(scriptID string) *GetScriptPageParams

WithScriptID adds the scriptID to the get script page params

func (*GetScriptPageParams) WithTimeout

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

WithTimeout adds the timeout to the get script page params

func (*GetScriptPageParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetScriptPageReader

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

GetScriptPageReader is a Reader for the GetScriptPage structure.

func (*GetScriptPageReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptPageRequestEntityTooLarge

type GetScriptPageRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptPageRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptPageRequestEntityTooLarge

func NewGetScriptPageRequestEntityTooLarge() *GetScriptPageRequestEntityTooLarge

NewGetScriptPageRequestEntityTooLarge creates a GetScriptPageRequestEntityTooLarge with default headers values

func (*GetScriptPageRequestEntityTooLarge) Error

func (*GetScriptPageRequestEntityTooLarge) GetPayload

func (*GetScriptPageRequestEntityTooLarge) IsClientError

func (o *GetScriptPageRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get script page request entity too large response has a 4xx status code

func (*GetScriptPageRequestEntityTooLarge) IsCode

IsCode returns true when this get script page request entity too large response a status code equal to that given

func (*GetScriptPageRequestEntityTooLarge) IsRedirect

func (o *GetScriptPageRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get script page request entity too large response has a 3xx status code

func (*GetScriptPageRequestEntityTooLarge) IsServerError

func (o *GetScriptPageRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get script page request entity too large response has a 5xx status code

func (*GetScriptPageRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get script page request entity too large response has a 2xx status code

func (*GetScriptPageRequestEntityTooLarge) String

type GetScriptPageRequestTimeout

type GetScriptPageRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptPageRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptPageRequestTimeout

func NewGetScriptPageRequestTimeout() *GetScriptPageRequestTimeout

NewGetScriptPageRequestTimeout creates a GetScriptPageRequestTimeout with default headers values

func (*GetScriptPageRequestTimeout) Error

func (*GetScriptPageRequestTimeout) GetPayload

func (o *GetScriptPageRequestTimeout) GetPayload() *models.ErrorBody

func (*GetScriptPageRequestTimeout) IsClientError

func (o *GetScriptPageRequestTimeout) IsClientError() bool

IsClientError returns true when this get script page request timeout response has a 4xx status code

func (*GetScriptPageRequestTimeout) IsCode

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

IsCode returns true when this get script page request timeout response a status code equal to that given

func (*GetScriptPageRequestTimeout) IsRedirect

func (o *GetScriptPageRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get script page request timeout response has a 3xx status code

func (*GetScriptPageRequestTimeout) IsServerError

func (o *GetScriptPageRequestTimeout) IsServerError() bool

IsServerError returns true when this get script page request timeout response has a 5xx status code

func (*GetScriptPageRequestTimeout) IsSuccess

func (o *GetScriptPageRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get script page request timeout response has a 2xx status code

func (*GetScriptPageRequestTimeout) String

func (o *GetScriptPageRequestTimeout) String() string

type GetScriptPageServiceUnavailable

type GetScriptPageServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptPageServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptPageServiceUnavailable

func NewGetScriptPageServiceUnavailable() *GetScriptPageServiceUnavailable

NewGetScriptPageServiceUnavailable creates a GetScriptPageServiceUnavailable with default headers values

func (*GetScriptPageServiceUnavailable) Error

func (*GetScriptPageServiceUnavailable) GetPayload

func (*GetScriptPageServiceUnavailable) IsClientError

func (o *GetScriptPageServiceUnavailable) IsClientError() bool

IsClientError returns true when this get script page service unavailable response has a 4xx status code

func (*GetScriptPageServiceUnavailable) IsCode

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

IsCode returns true when this get script page service unavailable response a status code equal to that given

func (*GetScriptPageServiceUnavailable) IsRedirect

func (o *GetScriptPageServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get script page service unavailable response has a 3xx status code

func (*GetScriptPageServiceUnavailable) IsServerError

func (o *GetScriptPageServiceUnavailable) IsServerError() bool

IsServerError returns true when this get script page service unavailable response has a 5xx status code

func (*GetScriptPageServiceUnavailable) IsSuccess

func (o *GetScriptPageServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get script page service unavailable response has a 2xx status code

func (*GetScriptPageServiceUnavailable) String

type GetScriptPageTooManyRequests

type GetScriptPageTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptPageTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptPageTooManyRequests

func NewGetScriptPageTooManyRequests() *GetScriptPageTooManyRequests

NewGetScriptPageTooManyRequests creates a GetScriptPageTooManyRequests with default headers values

func (*GetScriptPageTooManyRequests) Error

func (*GetScriptPageTooManyRequests) GetPayload

func (*GetScriptPageTooManyRequests) IsClientError

func (o *GetScriptPageTooManyRequests) IsClientError() bool

IsClientError returns true when this get script page too many requests response has a 4xx status code

func (*GetScriptPageTooManyRequests) IsCode

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

IsCode returns true when this get script page too many requests response a status code equal to that given

func (*GetScriptPageTooManyRequests) IsRedirect

func (o *GetScriptPageTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get script page too many requests response has a 3xx status code

func (*GetScriptPageTooManyRequests) IsServerError

func (o *GetScriptPageTooManyRequests) IsServerError() bool

IsServerError returns true when this get script page too many requests response has a 5xx status code

func (*GetScriptPageTooManyRequests) IsSuccess

func (o *GetScriptPageTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get script page too many requests response has a 2xx status code

func (*GetScriptPageTooManyRequests) String

type GetScriptPageUnauthorized

type GetScriptPageUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptPageUnauthorized

func NewGetScriptPageUnauthorized() *GetScriptPageUnauthorized

NewGetScriptPageUnauthorized creates a GetScriptPageUnauthorized with default headers values

func (*GetScriptPageUnauthorized) Error

func (o *GetScriptPageUnauthorized) Error() string

func (*GetScriptPageUnauthorized) GetPayload

func (o *GetScriptPageUnauthorized) GetPayload() *models.ErrorBody

func (*GetScriptPageUnauthorized) IsClientError

func (o *GetScriptPageUnauthorized) IsClientError() bool

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

func (*GetScriptPageUnauthorized) IsCode

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

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

func (*GetScriptPageUnauthorized) IsRedirect

func (o *GetScriptPageUnauthorized) IsRedirect() bool

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

func (*GetScriptPageUnauthorized) IsServerError

func (o *GetScriptPageUnauthorized) IsServerError() bool

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

func (*GetScriptPageUnauthorized) IsSuccess

func (o *GetScriptPageUnauthorized) IsSuccess() bool

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

func (*GetScriptPageUnauthorized) String

func (o *GetScriptPageUnauthorized) String() string

type GetScriptPageUnsupportedMediaType

type GetScriptPageUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptPageUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptPageUnsupportedMediaType

func NewGetScriptPageUnsupportedMediaType() *GetScriptPageUnsupportedMediaType

NewGetScriptPageUnsupportedMediaType creates a GetScriptPageUnsupportedMediaType with default headers values

func (*GetScriptPageUnsupportedMediaType) Error

func (*GetScriptPageUnsupportedMediaType) GetPayload

func (*GetScriptPageUnsupportedMediaType) IsClientError

func (o *GetScriptPageUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get script page unsupported media type response has a 4xx status code

func (*GetScriptPageUnsupportedMediaType) IsCode

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

IsCode returns true when this get script page unsupported media type response a status code equal to that given

func (*GetScriptPageUnsupportedMediaType) IsRedirect

func (o *GetScriptPageUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get script page unsupported media type response has a 3xx status code

func (*GetScriptPageUnsupportedMediaType) IsServerError

func (o *GetScriptPageUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get script page unsupported media type response has a 5xx status code

func (*GetScriptPageUnsupportedMediaType) IsSuccess

func (o *GetScriptPageUnsupportedMediaType) IsSuccess() bool

IsSuccess returns true when this get script page unsupported media type response has a 2xx status code

func (*GetScriptPageUnsupportedMediaType) String

type GetScriptPagesBadRequest

type GetScriptPagesBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptPagesBadRequest

func NewGetScriptPagesBadRequest() *GetScriptPagesBadRequest

NewGetScriptPagesBadRequest creates a GetScriptPagesBadRequest with default headers values

func (*GetScriptPagesBadRequest) Error

func (o *GetScriptPagesBadRequest) Error() string

func (*GetScriptPagesBadRequest) GetPayload

func (o *GetScriptPagesBadRequest) GetPayload() *models.ErrorBody

func (*GetScriptPagesBadRequest) IsClientError

func (o *GetScriptPagesBadRequest) IsClientError() bool

IsClientError returns true when this get script pages bad request response has a 4xx status code

func (*GetScriptPagesBadRequest) IsCode

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

IsCode returns true when this get script pages bad request response a status code equal to that given

func (*GetScriptPagesBadRequest) IsRedirect

func (o *GetScriptPagesBadRequest) IsRedirect() bool

IsRedirect returns true when this get script pages bad request response has a 3xx status code

func (*GetScriptPagesBadRequest) IsServerError

func (o *GetScriptPagesBadRequest) IsServerError() bool

IsServerError returns true when this get script pages bad request response has a 5xx status code

func (*GetScriptPagesBadRequest) IsSuccess

func (o *GetScriptPagesBadRequest) IsSuccess() bool

IsSuccess returns true when this get script pages bad request response has a 2xx status code

func (*GetScriptPagesBadRequest) String

func (o *GetScriptPagesBadRequest) String() string

type GetScriptPagesForbidden

type GetScriptPagesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptPagesForbidden

func NewGetScriptPagesForbidden() *GetScriptPagesForbidden

NewGetScriptPagesForbidden creates a GetScriptPagesForbidden with default headers values

func (*GetScriptPagesForbidden) Error

func (o *GetScriptPagesForbidden) Error() string

func (*GetScriptPagesForbidden) GetPayload

func (o *GetScriptPagesForbidden) GetPayload() *models.ErrorBody

func (*GetScriptPagesForbidden) IsClientError

func (o *GetScriptPagesForbidden) IsClientError() bool

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

func (*GetScriptPagesForbidden) IsCode

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

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

func (*GetScriptPagesForbidden) IsRedirect

func (o *GetScriptPagesForbidden) IsRedirect() bool

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

func (*GetScriptPagesForbidden) IsServerError

func (o *GetScriptPagesForbidden) IsServerError() bool

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

func (*GetScriptPagesForbidden) IsSuccess

func (o *GetScriptPagesForbidden) IsSuccess() bool

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

func (*GetScriptPagesForbidden) String

func (o *GetScriptPagesForbidden) String() string

type GetScriptPagesGatewayTimeout

type GetScriptPagesGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptPagesGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptPagesGatewayTimeout

func NewGetScriptPagesGatewayTimeout() *GetScriptPagesGatewayTimeout

NewGetScriptPagesGatewayTimeout creates a GetScriptPagesGatewayTimeout with default headers values

func (*GetScriptPagesGatewayTimeout) Error

func (*GetScriptPagesGatewayTimeout) GetPayload

func (*GetScriptPagesGatewayTimeout) IsClientError

func (o *GetScriptPagesGatewayTimeout) IsClientError() bool

IsClientError returns true when this get script pages gateway timeout response has a 4xx status code

func (*GetScriptPagesGatewayTimeout) IsCode

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

IsCode returns true when this get script pages gateway timeout response a status code equal to that given

func (*GetScriptPagesGatewayTimeout) IsRedirect

func (o *GetScriptPagesGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get script pages gateway timeout response has a 3xx status code

func (*GetScriptPagesGatewayTimeout) IsServerError

func (o *GetScriptPagesGatewayTimeout) IsServerError() bool

IsServerError returns true when this get script pages gateway timeout response has a 5xx status code

func (*GetScriptPagesGatewayTimeout) IsSuccess

func (o *GetScriptPagesGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get script pages gateway timeout response has a 2xx status code

func (*GetScriptPagesGatewayTimeout) String

type GetScriptPagesInternalServerError

type GetScriptPagesInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptPagesInternalServerError

func NewGetScriptPagesInternalServerError() *GetScriptPagesInternalServerError

NewGetScriptPagesInternalServerError creates a GetScriptPagesInternalServerError with default headers values

func (*GetScriptPagesInternalServerError) Error

func (*GetScriptPagesInternalServerError) GetPayload

func (*GetScriptPagesInternalServerError) IsClientError

func (o *GetScriptPagesInternalServerError) IsClientError() bool

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

func (*GetScriptPagesInternalServerError) IsCode

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

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

func (*GetScriptPagesInternalServerError) IsRedirect

func (o *GetScriptPagesInternalServerError) IsRedirect() bool

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

func (*GetScriptPagesInternalServerError) IsServerError

func (o *GetScriptPagesInternalServerError) IsServerError() bool

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

func (*GetScriptPagesInternalServerError) IsSuccess

func (o *GetScriptPagesInternalServerError) IsSuccess() bool

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

func (*GetScriptPagesInternalServerError) String

type GetScriptPagesNotFound

type GetScriptPagesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptPagesNotFound

func NewGetScriptPagesNotFound() *GetScriptPagesNotFound

NewGetScriptPagesNotFound creates a GetScriptPagesNotFound with default headers values

func (*GetScriptPagesNotFound) Error

func (o *GetScriptPagesNotFound) Error() string

func (*GetScriptPagesNotFound) GetPayload

func (o *GetScriptPagesNotFound) GetPayload() *models.ErrorBody

func (*GetScriptPagesNotFound) IsClientError

func (o *GetScriptPagesNotFound) IsClientError() bool

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

func (*GetScriptPagesNotFound) IsCode

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

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

func (*GetScriptPagesNotFound) IsRedirect

func (o *GetScriptPagesNotFound) IsRedirect() bool

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

func (*GetScriptPagesNotFound) IsServerError

func (o *GetScriptPagesNotFound) IsServerError() bool

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

func (*GetScriptPagesNotFound) IsSuccess

func (o *GetScriptPagesNotFound) IsSuccess() bool

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

func (*GetScriptPagesNotFound) String

func (o *GetScriptPagesNotFound) String() string

type GetScriptPagesOK

type GetScriptPagesOK struct {
	Payload []*models.Page
}

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

successful operation

func NewGetScriptPagesOK

func NewGetScriptPagesOK() *GetScriptPagesOK

NewGetScriptPagesOK creates a GetScriptPagesOK with default headers values

func (*GetScriptPagesOK) Error

func (o *GetScriptPagesOK) Error() string

func (*GetScriptPagesOK) GetPayload

func (o *GetScriptPagesOK) GetPayload() []*models.Page

func (*GetScriptPagesOK) IsClientError

func (o *GetScriptPagesOK) IsClientError() bool

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

func (*GetScriptPagesOK) IsCode

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

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

func (*GetScriptPagesOK) IsRedirect

func (o *GetScriptPagesOK) IsRedirect() bool

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

func (*GetScriptPagesOK) IsServerError

func (o *GetScriptPagesOK) IsServerError() bool

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

func (*GetScriptPagesOK) IsSuccess

func (o *GetScriptPagesOK) IsSuccess() bool

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

func (*GetScriptPagesOK) String

func (o *GetScriptPagesOK) String() string

type GetScriptPagesParams

type GetScriptPagesParams struct {

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

	/* ScriptID.

	   Script ID
	*/
	ScriptID string

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

GetScriptPagesParams contains all the parameters to send to the API endpoint

for the get script pages operation.

Typically these are written to a http.Request.

func NewGetScriptPagesParams

func NewGetScriptPagesParams() *GetScriptPagesParams

NewGetScriptPagesParams creates a new GetScriptPagesParams 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 NewGetScriptPagesParamsWithContext

func NewGetScriptPagesParamsWithContext(ctx context.Context) *GetScriptPagesParams

NewGetScriptPagesParamsWithContext creates a new GetScriptPagesParams object with the ability to set a context for a request.

func NewGetScriptPagesParamsWithHTTPClient

func NewGetScriptPagesParamsWithHTTPClient(client *http.Client) *GetScriptPagesParams

NewGetScriptPagesParamsWithHTTPClient creates a new GetScriptPagesParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptPagesParamsWithTimeout

func NewGetScriptPagesParamsWithTimeout(timeout time.Duration) *GetScriptPagesParams

NewGetScriptPagesParamsWithTimeout creates a new GetScriptPagesParams object with the ability to set a timeout on a request.

func (*GetScriptPagesParams) SetContext

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

SetContext adds the context to the get script pages params

func (*GetScriptPagesParams) SetDefaults

func (o *GetScriptPagesParams) SetDefaults()

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

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

func (*GetScriptPagesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get script pages params

func (*GetScriptPagesParams) SetScriptDataVersion

func (o *GetScriptPagesParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get script pages params

func (*GetScriptPagesParams) SetScriptID

func (o *GetScriptPagesParams) SetScriptID(scriptID string)

SetScriptID adds the scriptId to the get script pages params

func (*GetScriptPagesParams) SetTimeout

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

SetTimeout adds the timeout to the get script pages params

func (*GetScriptPagesParams) WithContext

WithContext adds the context to the get script pages params

func (*GetScriptPagesParams) WithDefaults

func (o *GetScriptPagesParams) WithDefaults() *GetScriptPagesParams

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

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

func (*GetScriptPagesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get script pages params

func (*GetScriptPagesParams) WithScriptDataVersion

func (o *GetScriptPagesParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptPagesParams

WithScriptDataVersion adds the scriptDataVersion to the get script pages params

func (*GetScriptPagesParams) WithScriptID

func (o *GetScriptPagesParams) WithScriptID(scriptID string) *GetScriptPagesParams

WithScriptID adds the scriptID to the get script pages params

func (*GetScriptPagesParams) WithTimeout

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

WithTimeout adds the timeout to the get script pages params

func (*GetScriptPagesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetScriptPagesReader

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

GetScriptPagesReader is a Reader for the GetScriptPages structure.

func (*GetScriptPagesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptPagesRequestEntityTooLarge

type GetScriptPagesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptPagesRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptPagesRequestEntityTooLarge

func NewGetScriptPagesRequestEntityTooLarge() *GetScriptPagesRequestEntityTooLarge

NewGetScriptPagesRequestEntityTooLarge creates a GetScriptPagesRequestEntityTooLarge with default headers values

func (*GetScriptPagesRequestEntityTooLarge) Error

func (*GetScriptPagesRequestEntityTooLarge) GetPayload

func (*GetScriptPagesRequestEntityTooLarge) IsClientError

func (o *GetScriptPagesRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get script pages request entity too large response has a 4xx status code

func (*GetScriptPagesRequestEntityTooLarge) IsCode

IsCode returns true when this get script pages request entity too large response a status code equal to that given

func (*GetScriptPagesRequestEntityTooLarge) IsRedirect

func (o *GetScriptPagesRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get script pages request entity too large response has a 3xx status code

func (*GetScriptPagesRequestEntityTooLarge) IsServerError

func (o *GetScriptPagesRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get script pages request entity too large response has a 5xx status code

func (*GetScriptPagesRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get script pages request entity too large response has a 2xx status code

func (*GetScriptPagesRequestEntityTooLarge) String

type GetScriptPagesRequestTimeout

type GetScriptPagesRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptPagesRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptPagesRequestTimeout

func NewGetScriptPagesRequestTimeout() *GetScriptPagesRequestTimeout

NewGetScriptPagesRequestTimeout creates a GetScriptPagesRequestTimeout with default headers values

func (*GetScriptPagesRequestTimeout) Error

func (*GetScriptPagesRequestTimeout) GetPayload

func (*GetScriptPagesRequestTimeout) IsClientError

func (o *GetScriptPagesRequestTimeout) IsClientError() bool

IsClientError returns true when this get script pages request timeout response has a 4xx status code

func (*GetScriptPagesRequestTimeout) IsCode

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

IsCode returns true when this get script pages request timeout response a status code equal to that given

func (*GetScriptPagesRequestTimeout) IsRedirect

func (o *GetScriptPagesRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get script pages request timeout response has a 3xx status code

func (*GetScriptPagesRequestTimeout) IsServerError

func (o *GetScriptPagesRequestTimeout) IsServerError() bool

IsServerError returns true when this get script pages request timeout response has a 5xx status code

func (*GetScriptPagesRequestTimeout) IsSuccess

func (o *GetScriptPagesRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get script pages request timeout response has a 2xx status code

func (*GetScriptPagesRequestTimeout) String

type GetScriptPagesServiceUnavailable

type GetScriptPagesServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptPagesServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptPagesServiceUnavailable

func NewGetScriptPagesServiceUnavailable() *GetScriptPagesServiceUnavailable

NewGetScriptPagesServiceUnavailable creates a GetScriptPagesServiceUnavailable with default headers values

func (*GetScriptPagesServiceUnavailable) Error

func (*GetScriptPagesServiceUnavailable) GetPayload

func (*GetScriptPagesServiceUnavailable) IsClientError

func (o *GetScriptPagesServiceUnavailable) IsClientError() bool

IsClientError returns true when this get script pages service unavailable response has a 4xx status code

func (*GetScriptPagesServiceUnavailable) IsCode

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

IsCode returns true when this get script pages service unavailable response a status code equal to that given

func (*GetScriptPagesServiceUnavailable) IsRedirect

func (o *GetScriptPagesServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get script pages service unavailable response has a 3xx status code

func (*GetScriptPagesServiceUnavailable) IsServerError

func (o *GetScriptPagesServiceUnavailable) IsServerError() bool

IsServerError returns true when this get script pages service unavailable response has a 5xx status code

func (*GetScriptPagesServiceUnavailable) IsSuccess

func (o *GetScriptPagesServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get script pages service unavailable response has a 2xx status code

func (*GetScriptPagesServiceUnavailable) String

type GetScriptPagesTooManyRequests

type GetScriptPagesTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptPagesTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptPagesTooManyRequests

func NewGetScriptPagesTooManyRequests() *GetScriptPagesTooManyRequests

NewGetScriptPagesTooManyRequests creates a GetScriptPagesTooManyRequests with default headers values

func (*GetScriptPagesTooManyRequests) Error

func (*GetScriptPagesTooManyRequests) GetPayload

func (*GetScriptPagesTooManyRequests) IsClientError

func (o *GetScriptPagesTooManyRequests) IsClientError() bool

IsClientError returns true when this get script pages too many requests response has a 4xx status code

func (*GetScriptPagesTooManyRequests) IsCode

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

IsCode returns true when this get script pages too many requests response a status code equal to that given

func (*GetScriptPagesTooManyRequests) IsRedirect

func (o *GetScriptPagesTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get script pages too many requests response has a 3xx status code

func (*GetScriptPagesTooManyRequests) IsServerError

func (o *GetScriptPagesTooManyRequests) IsServerError() bool

IsServerError returns true when this get script pages too many requests response has a 5xx status code

func (*GetScriptPagesTooManyRequests) IsSuccess

func (o *GetScriptPagesTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get script pages too many requests response has a 2xx status code

func (*GetScriptPagesTooManyRequests) String

type GetScriptPagesUnauthorized

type GetScriptPagesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptPagesUnauthorized

func NewGetScriptPagesUnauthorized() *GetScriptPagesUnauthorized

NewGetScriptPagesUnauthorized creates a GetScriptPagesUnauthorized with default headers values

func (*GetScriptPagesUnauthorized) Error

func (*GetScriptPagesUnauthorized) GetPayload

func (o *GetScriptPagesUnauthorized) GetPayload() *models.ErrorBody

func (*GetScriptPagesUnauthorized) IsClientError

func (o *GetScriptPagesUnauthorized) IsClientError() bool

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

func (*GetScriptPagesUnauthorized) IsCode

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

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

func (*GetScriptPagesUnauthorized) IsRedirect

func (o *GetScriptPagesUnauthorized) IsRedirect() bool

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

func (*GetScriptPagesUnauthorized) IsServerError

func (o *GetScriptPagesUnauthorized) IsServerError() bool

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

func (*GetScriptPagesUnauthorized) IsSuccess

func (o *GetScriptPagesUnauthorized) IsSuccess() bool

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

func (*GetScriptPagesUnauthorized) String

func (o *GetScriptPagesUnauthorized) String() string

type GetScriptPagesUnsupportedMediaType

type GetScriptPagesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptPagesUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptPagesUnsupportedMediaType

func NewGetScriptPagesUnsupportedMediaType() *GetScriptPagesUnsupportedMediaType

NewGetScriptPagesUnsupportedMediaType creates a GetScriptPagesUnsupportedMediaType with default headers values

func (*GetScriptPagesUnsupportedMediaType) Error

func (*GetScriptPagesUnsupportedMediaType) GetPayload

func (*GetScriptPagesUnsupportedMediaType) IsClientError

func (o *GetScriptPagesUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get script pages unsupported media type response has a 4xx status code

func (*GetScriptPagesUnsupportedMediaType) IsCode

IsCode returns true when this get script pages unsupported media type response a status code equal to that given

func (*GetScriptPagesUnsupportedMediaType) IsRedirect

func (o *GetScriptPagesUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get script pages unsupported media type response has a 3xx status code

func (*GetScriptPagesUnsupportedMediaType) IsServerError

func (o *GetScriptPagesUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get script pages unsupported media type response has a 5xx status code

func (*GetScriptPagesUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get script pages unsupported media type response has a 2xx status code

func (*GetScriptPagesUnsupportedMediaType) String

type GetScriptParams

type GetScriptParams struct {

	/* ScriptID.

	   Script ID
	*/
	ScriptID string

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

GetScriptParams contains all the parameters to send to the API endpoint

for the get script operation.

Typically these are written to a http.Request.

func NewGetScriptParams

func NewGetScriptParams() *GetScriptParams

NewGetScriptParams creates a new GetScriptParams 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 NewGetScriptParamsWithContext

func NewGetScriptParamsWithContext(ctx context.Context) *GetScriptParams

NewGetScriptParamsWithContext creates a new GetScriptParams object with the ability to set a context for a request.

func NewGetScriptParamsWithHTTPClient

func NewGetScriptParamsWithHTTPClient(client *http.Client) *GetScriptParams

NewGetScriptParamsWithHTTPClient creates a new GetScriptParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptParamsWithTimeout

func NewGetScriptParamsWithTimeout(timeout time.Duration) *GetScriptParams

NewGetScriptParamsWithTimeout creates a new GetScriptParams object with the ability to set a timeout on a request.

func (*GetScriptParams) SetContext

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

SetContext adds the context to the get script params

func (*GetScriptParams) SetDefaults

func (o *GetScriptParams) SetDefaults()

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

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

func (*GetScriptParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get script params

func (*GetScriptParams) SetScriptID

func (o *GetScriptParams) SetScriptID(scriptID string)

SetScriptID adds the scriptId to the get script params

func (*GetScriptParams) SetTimeout

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

SetTimeout adds the timeout to the get script params

func (*GetScriptParams) WithContext

func (o *GetScriptParams) WithContext(ctx context.Context) *GetScriptParams

WithContext adds the context to the get script params

func (*GetScriptParams) WithDefaults

func (o *GetScriptParams) WithDefaults() *GetScriptParams

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

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

func (*GetScriptParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get script params

func (*GetScriptParams) WithScriptID

func (o *GetScriptParams) WithScriptID(scriptID string) *GetScriptParams

WithScriptID adds the scriptID to the get script params

func (*GetScriptParams) WithTimeout

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

WithTimeout adds the timeout to the get script params

func (*GetScriptParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetScriptReader

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

GetScriptReader is a Reader for the GetScript structure.

func (*GetScriptReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptRequestEntityTooLarge

type GetScriptRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptRequestEntityTooLarge

func NewGetScriptRequestEntityTooLarge() *GetScriptRequestEntityTooLarge

NewGetScriptRequestEntityTooLarge creates a GetScriptRequestEntityTooLarge with default headers values

func (*GetScriptRequestEntityTooLarge) Error

func (*GetScriptRequestEntityTooLarge) GetPayload

func (*GetScriptRequestEntityTooLarge) IsClientError

func (o *GetScriptRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get script request entity too large response has a 4xx status code

func (*GetScriptRequestEntityTooLarge) IsCode

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

IsCode returns true when this get script request entity too large response a status code equal to that given

func (*GetScriptRequestEntityTooLarge) IsRedirect

func (o *GetScriptRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get script request entity too large response has a 3xx status code

func (*GetScriptRequestEntityTooLarge) IsServerError

func (o *GetScriptRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get script request entity too large response has a 5xx status code

func (*GetScriptRequestEntityTooLarge) IsSuccess

func (o *GetScriptRequestEntityTooLarge) IsSuccess() bool

IsSuccess returns true when this get script request entity too large response has a 2xx status code

func (*GetScriptRequestEntityTooLarge) String

type GetScriptRequestTimeout

type GetScriptRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptRequestTimeout

func NewGetScriptRequestTimeout() *GetScriptRequestTimeout

NewGetScriptRequestTimeout creates a GetScriptRequestTimeout with default headers values

func (*GetScriptRequestTimeout) Error

func (o *GetScriptRequestTimeout) Error() string

func (*GetScriptRequestTimeout) GetPayload

func (o *GetScriptRequestTimeout) GetPayload() *models.ErrorBody

func (*GetScriptRequestTimeout) IsClientError

func (o *GetScriptRequestTimeout) IsClientError() bool

IsClientError returns true when this get script request timeout response has a 4xx status code

func (*GetScriptRequestTimeout) IsCode

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

IsCode returns true when this get script request timeout response a status code equal to that given

func (*GetScriptRequestTimeout) IsRedirect

func (o *GetScriptRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get script request timeout response has a 3xx status code

func (*GetScriptRequestTimeout) IsServerError

func (o *GetScriptRequestTimeout) IsServerError() bool

IsServerError returns true when this get script request timeout response has a 5xx status code

func (*GetScriptRequestTimeout) IsSuccess

func (o *GetScriptRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get script request timeout response has a 2xx status code

func (*GetScriptRequestTimeout) String

func (o *GetScriptRequestTimeout) String() string

type GetScriptServiceUnavailable

type GetScriptServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptServiceUnavailable

func NewGetScriptServiceUnavailable() *GetScriptServiceUnavailable

NewGetScriptServiceUnavailable creates a GetScriptServiceUnavailable with default headers values

func (*GetScriptServiceUnavailable) Error

func (*GetScriptServiceUnavailable) GetPayload

func (o *GetScriptServiceUnavailable) GetPayload() *models.ErrorBody

func (*GetScriptServiceUnavailable) IsClientError

func (o *GetScriptServiceUnavailable) IsClientError() bool

IsClientError returns true when this get script service unavailable response has a 4xx status code

func (*GetScriptServiceUnavailable) IsCode

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

IsCode returns true when this get script service unavailable response a status code equal to that given

func (*GetScriptServiceUnavailable) IsRedirect

func (o *GetScriptServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get script service unavailable response has a 3xx status code

func (*GetScriptServiceUnavailable) IsServerError

func (o *GetScriptServiceUnavailable) IsServerError() bool

IsServerError returns true when this get script service unavailable response has a 5xx status code

func (*GetScriptServiceUnavailable) IsSuccess

func (o *GetScriptServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get script service unavailable response has a 2xx status code

func (*GetScriptServiceUnavailable) String

func (o *GetScriptServiceUnavailable) String() string

type GetScriptTooManyRequests

type GetScriptTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptTooManyRequests

func NewGetScriptTooManyRequests() *GetScriptTooManyRequests

NewGetScriptTooManyRequests creates a GetScriptTooManyRequests with default headers values

func (*GetScriptTooManyRequests) Error

func (o *GetScriptTooManyRequests) Error() string

func (*GetScriptTooManyRequests) GetPayload

func (o *GetScriptTooManyRequests) GetPayload() *models.ErrorBody

func (*GetScriptTooManyRequests) IsClientError

func (o *GetScriptTooManyRequests) IsClientError() bool

IsClientError returns true when this get script too many requests response has a 4xx status code

func (*GetScriptTooManyRequests) IsCode

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

IsCode returns true when this get script too many requests response a status code equal to that given

func (*GetScriptTooManyRequests) IsRedirect

func (o *GetScriptTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get script too many requests response has a 3xx status code

func (*GetScriptTooManyRequests) IsServerError

func (o *GetScriptTooManyRequests) IsServerError() bool

IsServerError returns true when this get script too many requests response has a 5xx status code

func (*GetScriptTooManyRequests) IsSuccess

func (o *GetScriptTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get script too many requests response has a 2xx status code

func (*GetScriptTooManyRequests) String

func (o *GetScriptTooManyRequests) String() string

type GetScriptUnauthorized

type GetScriptUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptUnauthorized

func NewGetScriptUnauthorized() *GetScriptUnauthorized

NewGetScriptUnauthorized creates a GetScriptUnauthorized with default headers values

func (*GetScriptUnauthorized) Error

func (o *GetScriptUnauthorized) Error() string

func (*GetScriptUnauthorized) GetPayload

func (o *GetScriptUnauthorized) GetPayload() *models.ErrorBody

func (*GetScriptUnauthorized) IsClientError

func (o *GetScriptUnauthorized) IsClientError() bool

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

func (*GetScriptUnauthorized) IsCode

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

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

func (*GetScriptUnauthorized) IsRedirect

func (o *GetScriptUnauthorized) IsRedirect() bool

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

func (*GetScriptUnauthorized) IsServerError

func (o *GetScriptUnauthorized) IsServerError() bool

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

func (*GetScriptUnauthorized) IsSuccess

func (o *GetScriptUnauthorized) IsSuccess() bool

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

func (*GetScriptUnauthorized) String

func (o *GetScriptUnauthorized) String() string

type GetScriptUnsupportedMediaType

type GetScriptUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptUnsupportedMediaType

func NewGetScriptUnsupportedMediaType() *GetScriptUnsupportedMediaType

NewGetScriptUnsupportedMediaType creates a GetScriptUnsupportedMediaType with default headers values

func (*GetScriptUnsupportedMediaType) Error

func (*GetScriptUnsupportedMediaType) GetPayload

func (*GetScriptUnsupportedMediaType) IsClientError

func (o *GetScriptUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get script unsupported media type response has a 4xx status code

func (*GetScriptUnsupportedMediaType) IsCode

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

IsCode returns true when this get script unsupported media type response a status code equal to that given

func (*GetScriptUnsupportedMediaType) IsRedirect

func (o *GetScriptUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get script unsupported media type response has a 3xx status code

func (*GetScriptUnsupportedMediaType) IsServerError

func (o *GetScriptUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get script unsupported media type response has a 5xx status code

func (*GetScriptUnsupportedMediaType) IsSuccess

func (o *GetScriptUnsupportedMediaType) IsSuccess() bool

IsSuccess returns true when this get script unsupported media type response has a 2xx status code

func (*GetScriptUnsupportedMediaType) String

type GetScriptsBadRequest

type GetScriptsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsBadRequest

func NewGetScriptsBadRequest() *GetScriptsBadRequest

NewGetScriptsBadRequest creates a GetScriptsBadRequest with default headers values

func (*GetScriptsBadRequest) Error

func (o *GetScriptsBadRequest) Error() string

func (*GetScriptsBadRequest) GetPayload

func (o *GetScriptsBadRequest) GetPayload() *models.ErrorBody

func (*GetScriptsBadRequest) IsClientError

func (o *GetScriptsBadRequest) IsClientError() bool

IsClientError returns true when this get scripts bad request response has a 4xx status code

func (*GetScriptsBadRequest) IsCode

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

IsCode returns true when this get scripts bad request response a status code equal to that given

func (*GetScriptsBadRequest) IsRedirect

func (o *GetScriptsBadRequest) IsRedirect() bool

IsRedirect returns true when this get scripts bad request response has a 3xx status code

func (*GetScriptsBadRequest) IsServerError

func (o *GetScriptsBadRequest) IsServerError() bool

IsServerError returns true when this get scripts bad request response has a 5xx status code

func (*GetScriptsBadRequest) IsSuccess

func (o *GetScriptsBadRequest) IsSuccess() bool

IsSuccess returns true when this get scripts bad request response has a 2xx status code

func (*GetScriptsBadRequest) String

func (o *GetScriptsBadRequest) String() string

type GetScriptsDivisionviewsBadRequest

type GetScriptsDivisionviewsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsDivisionviewsBadRequest

func NewGetScriptsDivisionviewsBadRequest() *GetScriptsDivisionviewsBadRequest

NewGetScriptsDivisionviewsBadRequest creates a GetScriptsDivisionviewsBadRequest with default headers values

func (*GetScriptsDivisionviewsBadRequest) Error

func (*GetScriptsDivisionviewsBadRequest) GetPayload

func (*GetScriptsDivisionviewsBadRequest) IsClientError

func (o *GetScriptsDivisionviewsBadRequest) IsClientError() bool

IsClientError returns true when this get scripts divisionviews bad request response has a 4xx status code

func (*GetScriptsDivisionviewsBadRequest) IsCode

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

IsCode returns true when this get scripts divisionviews bad request response a status code equal to that given

func (*GetScriptsDivisionviewsBadRequest) IsRedirect

func (o *GetScriptsDivisionviewsBadRequest) IsRedirect() bool

IsRedirect returns true when this get scripts divisionviews bad request response has a 3xx status code

func (*GetScriptsDivisionviewsBadRequest) IsServerError

func (o *GetScriptsDivisionviewsBadRequest) IsServerError() bool

IsServerError returns true when this get scripts divisionviews bad request response has a 5xx status code

func (*GetScriptsDivisionviewsBadRequest) IsSuccess

func (o *GetScriptsDivisionviewsBadRequest) IsSuccess() bool

IsSuccess returns true when this get scripts divisionviews bad request response has a 2xx status code

func (*GetScriptsDivisionviewsBadRequest) String

type GetScriptsDivisionviewsForbidden

type GetScriptsDivisionviewsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsDivisionviewsForbidden

func NewGetScriptsDivisionviewsForbidden() *GetScriptsDivisionviewsForbidden

NewGetScriptsDivisionviewsForbidden creates a GetScriptsDivisionviewsForbidden with default headers values

func (*GetScriptsDivisionviewsForbidden) Error

func (*GetScriptsDivisionviewsForbidden) GetPayload

func (*GetScriptsDivisionviewsForbidden) IsClientError

func (o *GetScriptsDivisionviewsForbidden) IsClientError() bool

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

func (*GetScriptsDivisionviewsForbidden) IsCode

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

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

func (*GetScriptsDivisionviewsForbidden) IsRedirect

func (o *GetScriptsDivisionviewsForbidden) IsRedirect() bool

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

func (*GetScriptsDivisionviewsForbidden) IsServerError

func (o *GetScriptsDivisionviewsForbidden) IsServerError() bool

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

func (*GetScriptsDivisionviewsForbidden) IsSuccess

func (o *GetScriptsDivisionviewsForbidden) IsSuccess() bool

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

func (*GetScriptsDivisionviewsForbidden) String

type GetScriptsDivisionviewsGatewayTimeout

type GetScriptsDivisionviewsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsDivisionviewsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsDivisionviewsGatewayTimeout

func NewGetScriptsDivisionviewsGatewayTimeout() *GetScriptsDivisionviewsGatewayTimeout

NewGetScriptsDivisionviewsGatewayTimeout creates a GetScriptsDivisionviewsGatewayTimeout with default headers values

func (*GetScriptsDivisionviewsGatewayTimeout) Error

func (*GetScriptsDivisionviewsGatewayTimeout) GetPayload

func (*GetScriptsDivisionviewsGatewayTimeout) IsClientError

func (o *GetScriptsDivisionviewsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get scripts divisionviews gateway timeout response has a 4xx status code

func (*GetScriptsDivisionviewsGatewayTimeout) IsCode

IsCode returns true when this get scripts divisionviews gateway timeout response a status code equal to that given

func (*GetScriptsDivisionviewsGatewayTimeout) IsRedirect

IsRedirect returns true when this get scripts divisionviews gateway timeout response has a 3xx status code

func (*GetScriptsDivisionviewsGatewayTimeout) IsServerError

func (o *GetScriptsDivisionviewsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get scripts divisionviews gateway timeout response has a 5xx status code

func (*GetScriptsDivisionviewsGatewayTimeout) IsSuccess

IsSuccess returns true when this get scripts divisionviews gateway timeout response has a 2xx status code

func (*GetScriptsDivisionviewsGatewayTimeout) String

type GetScriptsDivisionviewsInternalServerError

type GetScriptsDivisionviewsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsDivisionviewsInternalServerError

func NewGetScriptsDivisionviewsInternalServerError() *GetScriptsDivisionviewsInternalServerError

NewGetScriptsDivisionviewsInternalServerError creates a GetScriptsDivisionviewsInternalServerError with default headers values

func (*GetScriptsDivisionviewsInternalServerError) Error

func (*GetScriptsDivisionviewsInternalServerError) GetPayload

func (*GetScriptsDivisionviewsInternalServerError) IsClientError

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

func (*GetScriptsDivisionviewsInternalServerError) IsCode

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

func (*GetScriptsDivisionviewsInternalServerError) IsRedirect

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

func (*GetScriptsDivisionviewsInternalServerError) IsServerError

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

func (*GetScriptsDivisionviewsInternalServerError) IsSuccess

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

func (*GetScriptsDivisionviewsInternalServerError) String

type GetScriptsDivisionviewsNotFound

type GetScriptsDivisionviewsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsDivisionviewsNotFound

func NewGetScriptsDivisionviewsNotFound() *GetScriptsDivisionviewsNotFound

NewGetScriptsDivisionviewsNotFound creates a GetScriptsDivisionviewsNotFound with default headers values

func (*GetScriptsDivisionviewsNotFound) Error

func (*GetScriptsDivisionviewsNotFound) GetPayload

func (*GetScriptsDivisionviewsNotFound) IsClientError

func (o *GetScriptsDivisionviewsNotFound) IsClientError() bool

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

func (*GetScriptsDivisionviewsNotFound) IsCode

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

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

func (*GetScriptsDivisionviewsNotFound) IsRedirect

func (o *GetScriptsDivisionviewsNotFound) IsRedirect() bool

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

func (*GetScriptsDivisionviewsNotFound) IsServerError

func (o *GetScriptsDivisionviewsNotFound) IsServerError() bool

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

func (*GetScriptsDivisionviewsNotFound) IsSuccess

func (o *GetScriptsDivisionviewsNotFound) IsSuccess() bool

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

func (*GetScriptsDivisionviewsNotFound) String

type GetScriptsDivisionviewsOK

type GetScriptsDivisionviewsOK struct {
	Payload *models.ScriptEntityListing
}

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

successful operation

func NewGetScriptsDivisionviewsOK

func NewGetScriptsDivisionviewsOK() *GetScriptsDivisionviewsOK

NewGetScriptsDivisionviewsOK creates a GetScriptsDivisionviewsOK with default headers values

func (*GetScriptsDivisionviewsOK) Error

func (o *GetScriptsDivisionviewsOK) Error() string

func (*GetScriptsDivisionviewsOK) GetPayload

func (*GetScriptsDivisionviewsOK) IsClientError

func (o *GetScriptsDivisionviewsOK) IsClientError() bool

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

func (*GetScriptsDivisionviewsOK) IsCode

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

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

func (*GetScriptsDivisionviewsOK) IsRedirect

func (o *GetScriptsDivisionviewsOK) IsRedirect() bool

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

func (*GetScriptsDivisionviewsOK) IsServerError

func (o *GetScriptsDivisionviewsOK) IsServerError() bool

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

func (*GetScriptsDivisionviewsOK) IsSuccess

func (o *GetScriptsDivisionviewsOK) IsSuccess() bool

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

func (*GetScriptsDivisionviewsOK) String

func (o *GetScriptsDivisionviewsOK) String() string

type GetScriptsDivisionviewsParams

type GetScriptsDivisionviewsParams struct {

	/* DivisionIds.

	   Filters scripts to requested divisionIds
	*/
	DivisionIds *string

	/* Expand.

	   Expand
	*/
	Expand *string

	/* Feature.

	   Feature filter
	*/
	Feature *string

	/* FlowID.

	   Secure flow id filter
	*/
	FlowID *string

	/* Name.

	   Name filter
	*/
	Name *string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

	/* SortBy.

	   SortBy
	*/
	SortBy *string

	/* SortOrder.

	   SortOrder
	*/
	SortOrder *string

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

GetScriptsDivisionviewsParams contains all the parameters to send to the API endpoint

for the get scripts divisionviews operation.

Typically these are written to a http.Request.

func NewGetScriptsDivisionviewsParams

func NewGetScriptsDivisionviewsParams() *GetScriptsDivisionviewsParams

NewGetScriptsDivisionviewsParams creates a new GetScriptsDivisionviewsParams 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 NewGetScriptsDivisionviewsParamsWithContext

func NewGetScriptsDivisionviewsParamsWithContext(ctx context.Context) *GetScriptsDivisionviewsParams

NewGetScriptsDivisionviewsParamsWithContext creates a new GetScriptsDivisionviewsParams object with the ability to set a context for a request.

func NewGetScriptsDivisionviewsParamsWithHTTPClient

func NewGetScriptsDivisionviewsParamsWithHTTPClient(client *http.Client) *GetScriptsDivisionviewsParams

NewGetScriptsDivisionviewsParamsWithHTTPClient creates a new GetScriptsDivisionviewsParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsDivisionviewsParamsWithTimeout

func NewGetScriptsDivisionviewsParamsWithTimeout(timeout time.Duration) *GetScriptsDivisionviewsParams

NewGetScriptsDivisionviewsParamsWithTimeout creates a new GetScriptsDivisionviewsParams object with the ability to set a timeout on a request.

func (*GetScriptsDivisionviewsParams) SetContext

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

SetContext adds the context to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetDefaults

func (o *GetScriptsDivisionviewsParams) SetDefaults()

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

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

func (*GetScriptsDivisionviewsParams) SetDivisionIds

func (o *GetScriptsDivisionviewsParams) SetDivisionIds(divisionIds *string)

SetDivisionIds adds the divisionIds to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetExpand

func (o *GetScriptsDivisionviewsParams) SetExpand(expand *string)

SetExpand adds the expand to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetFeature

func (o *GetScriptsDivisionviewsParams) SetFeature(feature *string)

SetFeature adds the feature to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetFlowID

func (o *GetScriptsDivisionviewsParams) SetFlowID(flowID *string)

SetFlowID adds the flowId to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetName

func (o *GetScriptsDivisionviewsParams) SetName(name *string)

SetName adds the name to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetPageNumber

func (o *GetScriptsDivisionviewsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetPageSize

func (o *GetScriptsDivisionviewsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetScriptDataVersion

func (o *GetScriptsDivisionviewsParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetSortBy

func (o *GetScriptsDivisionviewsParams) SetSortBy(sortBy *string)

SetSortBy adds the sortBy to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetSortOrder

func (o *GetScriptsDivisionviewsParams) SetSortOrder(sortOrder *string)

SetSortOrder adds the sortOrder to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) SetTimeout

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

SetTimeout adds the timeout to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithContext

WithContext adds the context to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithDefaults

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

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

func (*GetScriptsDivisionviewsParams) WithDivisionIds

func (o *GetScriptsDivisionviewsParams) WithDivisionIds(divisionIds *string) *GetScriptsDivisionviewsParams

WithDivisionIds adds the divisionIds to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithExpand

WithExpand adds the expand to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithFeature

WithFeature adds the feature to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithFlowID

WithFlowID adds the flowID to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithName

WithName adds the name to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithPageNumber

func (o *GetScriptsDivisionviewsParams) WithPageNumber(pageNumber *int32) *GetScriptsDivisionviewsParams

WithPageNumber adds the pageNumber to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithPageSize

WithPageSize adds the pageSize to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithScriptDataVersion

func (o *GetScriptsDivisionviewsParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptsDivisionviewsParams

WithScriptDataVersion adds the scriptDataVersion to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithSortBy

WithSortBy adds the sortBy to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithSortOrder

WithSortOrder adds the sortOrder to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WithTimeout

WithTimeout adds the timeout to the get scripts divisionviews params

func (*GetScriptsDivisionviewsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetScriptsDivisionviewsReader

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

GetScriptsDivisionviewsReader is a Reader for the GetScriptsDivisionviews structure.

func (*GetScriptsDivisionviewsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsDivisionviewsRequestEntityTooLarge

type GetScriptsDivisionviewsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsDivisionviewsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsDivisionviewsRequestEntityTooLarge

func NewGetScriptsDivisionviewsRequestEntityTooLarge() *GetScriptsDivisionviewsRequestEntityTooLarge

NewGetScriptsDivisionviewsRequestEntityTooLarge creates a GetScriptsDivisionviewsRequestEntityTooLarge with default headers values

func (*GetScriptsDivisionviewsRequestEntityTooLarge) Error

func (*GetScriptsDivisionviewsRequestEntityTooLarge) GetPayload

func (*GetScriptsDivisionviewsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get scripts divisionviews request entity too large response has a 4xx status code

func (*GetScriptsDivisionviewsRequestEntityTooLarge) IsCode

IsCode returns true when this get scripts divisionviews request entity too large response a status code equal to that given

func (*GetScriptsDivisionviewsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get scripts divisionviews request entity too large response has a 3xx status code

func (*GetScriptsDivisionviewsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get scripts divisionviews request entity too large response has a 5xx status code

func (*GetScriptsDivisionviewsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get scripts divisionviews request entity too large response has a 2xx status code

func (*GetScriptsDivisionviewsRequestEntityTooLarge) String

type GetScriptsDivisionviewsRequestTimeout

type GetScriptsDivisionviewsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsDivisionviewsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsDivisionviewsRequestTimeout

func NewGetScriptsDivisionviewsRequestTimeout() *GetScriptsDivisionviewsRequestTimeout

NewGetScriptsDivisionviewsRequestTimeout creates a GetScriptsDivisionviewsRequestTimeout with default headers values

func (*GetScriptsDivisionviewsRequestTimeout) Error

func (*GetScriptsDivisionviewsRequestTimeout) GetPayload

func (*GetScriptsDivisionviewsRequestTimeout) IsClientError

func (o *GetScriptsDivisionviewsRequestTimeout) IsClientError() bool

IsClientError returns true when this get scripts divisionviews request timeout response has a 4xx status code

func (*GetScriptsDivisionviewsRequestTimeout) IsCode

IsCode returns true when this get scripts divisionviews request timeout response a status code equal to that given

func (*GetScriptsDivisionviewsRequestTimeout) IsRedirect

IsRedirect returns true when this get scripts divisionviews request timeout response has a 3xx status code

func (*GetScriptsDivisionviewsRequestTimeout) IsServerError

func (o *GetScriptsDivisionviewsRequestTimeout) IsServerError() bool

IsServerError returns true when this get scripts divisionviews request timeout response has a 5xx status code

func (*GetScriptsDivisionviewsRequestTimeout) IsSuccess

IsSuccess returns true when this get scripts divisionviews request timeout response has a 2xx status code

func (*GetScriptsDivisionviewsRequestTimeout) String

type GetScriptsDivisionviewsServiceUnavailable

type GetScriptsDivisionviewsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsDivisionviewsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsDivisionviewsServiceUnavailable

func NewGetScriptsDivisionviewsServiceUnavailable() *GetScriptsDivisionviewsServiceUnavailable

NewGetScriptsDivisionviewsServiceUnavailable creates a GetScriptsDivisionviewsServiceUnavailable with default headers values

func (*GetScriptsDivisionviewsServiceUnavailable) Error

func (*GetScriptsDivisionviewsServiceUnavailable) GetPayload

func (*GetScriptsDivisionviewsServiceUnavailable) IsClientError

IsClientError returns true when this get scripts divisionviews service unavailable response has a 4xx status code

func (*GetScriptsDivisionviewsServiceUnavailable) IsCode

IsCode returns true when this get scripts divisionviews service unavailable response a status code equal to that given

func (*GetScriptsDivisionviewsServiceUnavailable) IsRedirect

IsRedirect returns true when this get scripts divisionviews service unavailable response has a 3xx status code

func (*GetScriptsDivisionviewsServiceUnavailable) IsServerError

IsServerError returns true when this get scripts divisionviews service unavailable response has a 5xx status code

func (*GetScriptsDivisionviewsServiceUnavailable) IsSuccess

IsSuccess returns true when this get scripts divisionviews service unavailable response has a 2xx status code

func (*GetScriptsDivisionviewsServiceUnavailable) String

type GetScriptsDivisionviewsTooManyRequests

type GetScriptsDivisionviewsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsDivisionviewsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsDivisionviewsTooManyRequests

func NewGetScriptsDivisionviewsTooManyRequests() *GetScriptsDivisionviewsTooManyRequests

NewGetScriptsDivisionviewsTooManyRequests creates a GetScriptsDivisionviewsTooManyRequests with default headers values

func (*GetScriptsDivisionviewsTooManyRequests) Error

func (*GetScriptsDivisionviewsTooManyRequests) GetPayload

func (*GetScriptsDivisionviewsTooManyRequests) IsClientError

func (o *GetScriptsDivisionviewsTooManyRequests) IsClientError() bool

IsClientError returns true when this get scripts divisionviews too many requests response has a 4xx status code

func (*GetScriptsDivisionviewsTooManyRequests) IsCode

IsCode returns true when this get scripts divisionviews too many requests response a status code equal to that given

func (*GetScriptsDivisionviewsTooManyRequests) IsRedirect

IsRedirect returns true when this get scripts divisionviews too many requests response has a 3xx status code

func (*GetScriptsDivisionviewsTooManyRequests) IsServerError

func (o *GetScriptsDivisionviewsTooManyRequests) IsServerError() bool

IsServerError returns true when this get scripts divisionviews too many requests response has a 5xx status code

func (*GetScriptsDivisionviewsTooManyRequests) IsSuccess

IsSuccess returns true when this get scripts divisionviews too many requests response has a 2xx status code

func (*GetScriptsDivisionviewsTooManyRequests) String

type GetScriptsDivisionviewsUnauthorized

type GetScriptsDivisionviewsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsDivisionviewsUnauthorized

func NewGetScriptsDivisionviewsUnauthorized() *GetScriptsDivisionviewsUnauthorized

NewGetScriptsDivisionviewsUnauthorized creates a GetScriptsDivisionviewsUnauthorized with default headers values

func (*GetScriptsDivisionviewsUnauthorized) Error

func (*GetScriptsDivisionviewsUnauthorized) GetPayload

func (*GetScriptsDivisionviewsUnauthorized) IsClientError

func (o *GetScriptsDivisionviewsUnauthorized) IsClientError() bool

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

func (*GetScriptsDivisionviewsUnauthorized) IsCode

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

func (*GetScriptsDivisionviewsUnauthorized) IsRedirect

func (o *GetScriptsDivisionviewsUnauthorized) IsRedirect() bool

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

func (*GetScriptsDivisionviewsUnauthorized) IsServerError

func (o *GetScriptsDivisionviewsUnauthorized) IsServerError() bool

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

func (*GetScriptsDivisionviewsUnauthorized) IsSuccess

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

func (*GetScriptsDivisionviewsUnauthorized) String

type GetScriptsDivisionviewsUnsupportedMediaType

type GetScriptsDivisionviewsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsDivisionviewsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsDivisionviewsUnsupportedMediaType

func NewGetScriptsDivisionviewsUnsupportedMediaType() *GetScriptsDivisionviewsUnsupportedMediaType

NewGetScriptsDivisionviewsUnsupportedMediaType creates a GetScriptsDivisionviewsUnsupportedMediaType with default headers values

func (*GetScriptsDivisionviewsUnsupportedMediaType) Error

func (*GetScriptsDivisionviewsUnsupportedMediaType) GetPayload

func (*GetScriptsDivisionviewsUnsupportedMediaType) IsClientError

IsClientError returns true when this get scripts divisionviews unsupported media type response has a 4xx status code

func (*GetScriptsDivisionviewsUnsupportedMediaType) IsCode

IsCode returns true when this get scripts divisionviews unsupported media type response a status code equal to that given

func (*GetScriptsDivisionviewsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get scripts divisionviews unsupported media type response has a 3xx status code

func (*GetScriptsDivisionviewsUnsupportedMediaType) IsServerError

IsServerError returns true when this get scripts divisionviews unsupported media type response has a 5xx status code

func (*GetScriptsDivisionviewsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get scripts divisionviews unsupported media type response has a 2xx status code

func (*GetScriptsDivisionviewsUnsupportedMediaType) String

type GetScriptsForbidden

type GetScriptsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsForbidden

func NewGetScriptsForbidden() *GetScriptsForbidden

NewGetScriptsForbidden creates a GetScriptsForbidden with default headers values

func (*GetScriptsForbidden) Error

func (o *GetScriptsForbidden) Error() string

func (*GetScriptsForbidden) GetPayload

func (o *GetScriptsForbidden) GetPayload() *models.ErrorBody

func (*GetScriptsForbidden) IsClientError

func (o *GetScriptsForbidden) IsClientError() bool

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

func (*GetScriptsForbidden) IsCode

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

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

func (*GetScriptsForbidden) IsRedirect

func (o *GetScriptsForbidden) IsRedirect() bool

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

func (*GetScriptsForbidden) IsServerError

func (o *GetScriptsForbidden) IsServerError() bool

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

func (*GetScriptsForbidden) IsSuccess

func (o *GetScriptsForbidden) IsSuccess() bool

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

func (*GetScriptsForbidden) String

func (o *GetScriptsForbidden) String() string

type GetScriptsGatewayTimeout

type GetScriptsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsGatewayTimeout

func NewGetScriptsGatewayTimeout() *GetScriptsGatewayTimeout

NewGetScriptsGatewayTimeout creates a GetScriptsGatewayTimeout with default headers values

func (*GetScriptsGatewayTimeout) Error

func (o *GetScriptsGatewayTimeout) Error() string

func (*GetScriptsGatewayTimeout) GetPayload

func (o *GetScriptsGatewayTimeout) GetPayload() *models.ErrorBody

func (*GetScriptsGatewayTimeout) IsClientError

func (o *GetScriptsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get scripts gateway timeout response has a 4xx status code

func (*GetScriptsGatewayTimeout) IsCode

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

IsCode returns true when this get scripts gateway timeout response a status code equal to that given

func (*GetScriptsGatewayTimeout) IsRedirect

func (o *GetScriptsGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get scripts gateway timeout response has a 3xx status code

func (*GetScriptsGatewayTimeout) IsServerError

func (o *GetScriptsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get scripts gateway timeout response has a 5xx status code

func (*GetScriptsGatewayTimeout) IsSuccess

func (o *GetScriptsGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get scripts gateway timeout response has a 2xx status code

func (*GetScriptsGatewayTimeout) String

func (o *GetScriptsGatewayTimeout) String() string

type GetScriptsInternalServerError

type GetScriptsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsInternalServerError

func NewGetScriptsInternalServerError() *GetScriptsInternalServerError

NewGetScriptsInternalServerError creates a GetScriptsInternalServerError with default headers values

func (*GetScriptsInternalServerError) Error

func (*GetScriptsInternalServerError) GetPayload

func (*GetScriptsInternalServerError) IsClientError

func (o *GetScriptsInternalServerError) IsClientError() bool

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

func (*GetScriptsInternalServerError) IsCode

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

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

func (*GetScriptsInternalServerError) IsRedirect

func (o *GetScriptsInternalServerError) IsRedirect() bool

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

func (*GetScriptsInternalServerError) IsServerError

func (o *GetScriptsInternalServerError) IsServerError() bool

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

func (*GetScriptsInternalServerError) IsSuccess

func (o *GetScriptsInternalServerError) IsSuccess() bool

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

func (*GetScriptsInternalServerError) String

type GetScriptsNotFound

type GetScriptsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsNotFound

func NewGetScriptsNotFound() *GetScriptsNotFound

NewGetScriptsNotFound creates a GetScriptsNotFound with default headers values

func (*GetScriptsNotFound) Error

func (o *GetScriptsNotFound) Error() string

func (*GetScriptsNotFound) GetPayload

func (o *GetScriptsNotFound) GetPayload() *models.ErrorBody

func (*GetScriptsNotFound) IsClientError

func (o *GetScriptsNotFound) IsClientError() bool

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

func (*GetScriptsNotFound) IsCode

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

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

func (*GetScriptsNotFound) IsRedirect

func (o *GetScriptsNotFound) IsRedirect() bool

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

func (*GetScriptsNotFound) IsServerError

func (o *GetScriptsNotFound) IsServerError() bool

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

func (*GetScriptsNotFound) IsSuccess

func (o *GetScriptsNotFound) IsSuccess() bool

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

func (*GetScriptsNotFound) String

func (o *GetScriptsNotFound) String() string

type GetScriptsOK

type GetScriptsOK struct {
	Payload *models.ScriptEntityListing
}

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

successful operation

func NewGetScriptsOK

func NewGetScriptsOK() *GetScriptsOK

NewGetScriptsOK creates a GetScriptsOK with default headers values

func (*GetScriptsOK) Error

func (o *GetScriptsOK) Error() string

func (*GetScriptsOK) GetPayload

func (o *GetScriptsOK) GetPayload() *models.ScriptEntityListing

func (*GetScriptsOK) IsClientError

func (o *GetScriptsOK) IsClientError() bool

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

func (*GetScriptsOK) IsCode

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

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

func (*GetScriptsOK) IsRedirect

func (o *GetScriptsOK) IsRedirect() bool

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

func (*GetScriptsOK) IsServerError

func (o *GetScriptsOK) IsServerError() bool

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

func (*GetScriptsOK) IsSuccess

func (o *GetScriptsOK) IsSuccess() bool

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

func (*GetScriptsOK) String

func (o *GetScriptsOK) String() string

type GetScriptsParams

type GetScriptsParams struct {

	/* DivisionIds.

	   Filters scripts to requested divisionIds
	*/
	DivisionIds *string

	/* Expand.

	   Expand
	*/
	Expand *string

	/* Feature.

	   Feature filter
	*/
	Feature *string

	/* FlowID.

	   Secure flow id filter
	*/
	FlowID *string

	/* Name.

	   Name filter
	*/
	Name *string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

	/* SortBy.

	   SortBy
	*/
	SortBy *string

	/* SortOrder.

	   SortOrder
	*/
	SortOrder *string

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

GetScriptsParams contains all the parameters to send to the API endpoint

for the get scripts operation.

Typically these are written to a http.Request.

func NewGetScriptsParams

func NewGetScriptsParams() *GetScriptsParams

NewGetScriptsParams creates a new GetScriptsParams 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 NewGetScriptsParamsWithContext

func NewGetScriptsParamsWithContext(ctx context.Context) *GetScriptsParams

NewGetScriptsParamsWithContext creates a new GetScriptsParams object with the ability to set a context for a request.

func NewGetScriptsParamsWithHTTPClient

func NewGetScriptsParamsWithHTTPClient(client *http.Client) *GetScriptsParams

NewGetScriptsParamsWithHTTPClient creates a new GetScriptsParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsParamsWithTimeout

func NewGetScriptsParamsWithTimeout(timeout time.Duration) *GetScriptsParams

NewGetScriptsParamsWithTimeout creates a new GetScriptsParams object with the ability to set a timeout on a request.

func (*GetScriptsParams) SetContext

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

SetContext adds the context to the get scripts params

func (*GetScriptsParams) SetDefaults

func (o *GetScriptsParams) SetDefaults()

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

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

func (*GetScriptsParams) SetDivisionIds

func (o *GetScriptsParams) SetDivisionIds(divisionIds *string)

SetDivisionIds adds the divisionIds to the get scripts params

func (*GetScriptsParams) SetExpand

func (o *GetScriptsParams) SetExpand(expand *string)

SetExpand adds the expand to the get scripts params

func (*GetScriptsParams) SetFeature

func (o *GetScriptsParams) SetFeature(feature *string)

SetFeature adds the feature to the get scripts params

func (*GetScriptsParams) SetFlowID

func (o *GetScriptsParams) SetFlowID(flowID *string)

SetFlowID adds the flowId to the get scripts params

func (*GetScriptsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts params

func (*GetScriptsParams) SetName

func (o *GetScriptsParams) SetName(name *string)

SetName adds the name to the get scripts params

func (*GetScriptsParams) SetPageNumber

func (o *GetScriptsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get scripts params

func (*GetScriptsParams) SetPageSize

func (o *GetScriptsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get scripts params

func (*GetScriptsParams) SetScriptDataVersion

func (o *GetScriptsParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get scripts params

func (*GetScriptsParams) SetSortBy

func (o *GetScriptsParams) SetSortBy(sortBy *string)

SetSortBy adds the sortBy to the get scripts params

func (*GetScriptsParams) SetSortOrder

func (o *GetScriptsParams) SetSortOrder(sortOrder *string)

SetSortOrder adds the sortOrder to the get scripts params

func (*GetScriptsParams) SetTimeout

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

SetTimeout adds the timeout to the get scripts params

func (*GetScriptsParams) WithContext

func (o *GetScriptsParams) WithContext(ctx context.Context) *GetScriptsParams

WithContext adds the context to the get scripts params

func (*GetScriptsParams) WithDefaults

func (o *GetScriptsParams) WithDefaults() *GetScriptsParams

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

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

func (*GetScriptsParams) WithDivisionIds

func (o *GetScriptsParams) WithDivisionIds(divisionIds *string) *GetScriptsParams

WithDivisionIds adds the divisionIds to the get scripts params

func (*GetScriptsParams) WithExpand

func (o *GetScriptsParams) WithExpand(expand *string) *GetScriptsParams

WithExpand adds the expand to the get scripts params

func (*GetScriptsParams) WithFeature

func (o *GetScriptsParams) WithFeature(feature *string) *GetScriptsParams

WithFeature adds the feature to the get scripts params

func (*GetScriptsParams) WithFlowID

func (o *GetScriptsParams) WithFlowID(flowID *string) *GetScriptsParams

WithFlowID adds the flowID to the get scripts params

func (*GetScriptsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get scripts params

func (*GetScriptsParams) WithName

func (o *GetScriptsParams) WithName(name *string) *GetScriptsParams

WithName adds the name to the get scripts params

func (*GetScriptsParams) WithPageNumber

func (o *GetScriptsParams) WithPageNumber(pageNumber *int32) *GetScriptsParams

WithPageNumber adds the pageNumber to the get scripts params

func (*GetScriptsParams) WithPageSize

func (o *GetScriptsParams) WithPageSize(pageSize *int32) *GetScriptsParams

WithPageSize adds the pageSize to the get scripts params

func (*GetScriptsParams) WithScriptDataVersion

func (o *GetScriptsParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptsParams

WithScriptDataVersion adds the scriptDataVersion to the get scripts params

func (*GetScriptsParams) WithSortBy

func (o *GetScriptsParams) WithSortBy(sortBy *string) *GetScriptsParams

WithSortBy adds the sortBy to the get scripts params

func (*GetScriptsParams) WithSortOrder

func (o *GetScriptsParams) WithSortOrder(sortOrder *string) *GetScriptsParams

WithSortOrder adds the sortOrder to the get scripts params

func (*GetScriptsParams) WithTimeout

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

WithTimeout adds the timeout to the get scripts params

func (*GetScriptsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetScriptsPublishedBadRequest

type GetScriptsPublishedBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsPublishedBadRequest

func NewGetScriptsPublishedBadRequest() *GetScriptsPublishedBadRequest

NewGetScriptsPublishedBadRequest creates a GetScriptsPublishedBadRequest with default headers values

func (*GetScriptsPublishedBadRequest) Error

func (*GetScriptsPublishedBadRequest) GetPayload

func (*GetScriptsPublishedBadRequest) IsClientError

func (o *GetScriptsPublishedBadRequest) IsClientError() bool

IsClientError returns true when this get scripts published bad request response has a 4xx status code

func (*GetScriptsPublishedBadRequest) IsCode

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

IsCode returns true when this get scripts published bad request response a status code equal to that given

func (*GetScriptsPublishedBadRequest) IsRedirect

func (o *GetScriptsPublishedBadRequest) IsRedirect() bool

IsRedirect returns true when this get scripts published bad request response has a 3xx status code

func (*GetScriptsPublishedBadRequest) IsServerError

func (o *GetScriptsPublishedBadRequest) IsServerError() bool

IsServerError returns true when this get scripts published bad request response has a 5xx status code

func (*GetScriptsPublishedBadRequest) IsSuccess

func (o *GetScriptsPublishedBadRequest) IsSuccess() bool

IsSuccess returns true when this get scripts published bad request response has a 2xx status code

func (*GetScriptsPublishedBadRequest) String

type GetScriptsPublishedDivisionviewsBadRequest

type GetScriptsPublishedDivisionviewsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsPublishedDivisionviewsBadRequest

func NewGetScriptsPublishedDivisionviewsBadRequest() *GetScriptsPublishedDivisionviewsBadRequest

NewGetScriptsPublishedDivisionviewsBadRequest creates a GetScriptsPublishedDivisionviewsBadRequest with default headers values

func (*GetScriptsPublishedDivisionviewsBadRequest) Error

func (*GetScriptsPublishedDivisionviewsBadRequest) GetPayload

func (*GetScriptsPublishedDivisionviewsBadRequest) IsClientError

IsClientError returns true when this get scripts published divisionviews bad request response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsBadRequest) IsCode

IsCode returns true when this get scripts published divisionviews bad request response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsBadRequest) IsRedirect

IsRedirect returns true when this get scripts published divisionviews bad request response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsBadRequest) IsServerError

IsServerError returns true when this get scripts published divisionviews bad request response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsBadRequest) IsSuccess

IsSuccess returns true when this get scripts published divisionviews bad request response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsBadRequest) String

type GetScriptsPublishedDivisionviewsForbidden

type GetScriptsPublishedDivisionviewsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsPublishedDivisionviewsForbidden

func NewGetScriptsPublishedDivisionviewsForbidden() *GetScriptsPublishedDivisionviewsForbidden

NewGetScriptsPublishedDivisionviewsForbidden creates a GetScriptsPublishedDivisionviewsForbidden with default headers values

func (*GetScriptsPublishedDivisionviewsForbidden) Error

func (*GetScriptsPublishedDivisionviewsForbidden) GetPayload

func (*GetScriptsPublishedDivisionviewsForbidden) IsClientError

IsClientError returns true when this get scripts published divisionviews forbidden response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsForbidden) IsCode

IsCode returns true when this get scripts published divisionviews forbidden response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsForbidden) IsRedirect

IsRedirect returns true when this get scripts published divisionviews forbidden response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsForbidden) IsServerError

IsServerError returns true when this get scripts published divisionviews forbidden response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsForbidden) IsSuccess

IsSuccess returns true when this get scripts published divisionviews forbidden response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsForbidden) String

type GetScriptsPublishedDivisionviewsGatewayTimeout

type GetScriptsPublishedDivisionviewsGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedDivisionviewsGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsPublishedDivisionviewsGatewayTimeout

func NewGetScriptsPublishedDivisionviewsGatewayTimeout() *GetScriptsPublishedDivisionviewsGatewayTimeout

NewGetScriptsPublishedDivisionviewsGatewayTimeout creates a GetScriptsPublishedDivisionviewsGatewayTimeout with default headers values

func (*GetScriptsPublishedDivisionviewsGatewayTimeout) Error

func (*GetScriptsPublishedDivisionviewsGatewayTimeout) GetPayload

func (*GetScriptsPublishedDivisionviewsGatewayTimeout) IsClientError

IsClientError returns true when this get scripts published divisionviews gateway timeout response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsGatewayTimeout) IsCode

IsCode returns true when this get scripts published divisionviews gateway timeout response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsGatewayTimeout) IsRedirect

IsRedirect returns true when this get scripts published divisionviews gateway timeout response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsGatewayTimeout) IsServerError

IsServerError returns true when this get scripts published divisionviews gateway timeout response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsGatewayTimeout) IsSuccess

IsSuccess returns true when this get scripts published divisionviews gateway timeout response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsGatewayTimeout) String

type GetScriptsPublishedDivisionviewsInternalServerError

type GetScriptsPublishedDivisionviewsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsPublishedDivisionviewsInternalServerError

func NewGetScriptsPublishedDivisionviewsInternalServerError() *GetScriptsPublishedDivisionviewsInternalServerError

NewGetScriptsPublishedDivisionviewsInternalServerError creates a GetScriptsPublishedDivisionviewsInternalServerError with default headers values

func (*GetScriptsPublishedDivisionviewsInternalServerError) Error

func (*GetScriptsPublishedDivisionviewsInternalServerError) GetPayload

func (*GetScriptsPublishedDivisionviewsInternalServerError) IsClientError

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

func (*GetScriptsPublishedDivisionviewsInternalServerError) IsCode

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

func (*GetScriptsPublishedDivisionviewsInternalServerError) IsRedirect

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

func (*GetScriptsPublishedDivisionviewsInternalServerError) IsServerError

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

func (*GetScriptsPublishedDivisionviewsInternalServerError) IsSuccess

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

func (*GetScriptsPublishedDivisionviewsInternalServerError) String

type GetScriptsPublishedDivisionviewsNotFound

type GetScriptsPublishedDivisionviewsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsPublishedDivisionviewsNotFound

func NewGetScriptsPublishedDivisionviewsNotFound() *GetScriptsPublishedDivisionviewsNotFound

NewGetScriptsPublishedDivisionviewsNotFound creates a GetScriptsPublishedDivisionviewsNotFound with default headers values

func (*GetScriptsPublishedDivisionviewsNotFound) Error

func (*GetScriptsPublishedDivisionviewsNotFound) GetPayload

func (*GetScriptsPublishedDivisionviewsNotFound) IsClientError

IsClientError returns true when this get scripts published divisionviews not found response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsNotFound) IsCode

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

func (*GetScriptsPublishedDivisionviewsNotFound) IsRedirect

IsRedirect returns true when this get scripts published divisionviews not found response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsNotFound) IsServerError

IsServerError returns true when this get scripts published divisionviews not found response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsNotFound) IsSuccess

IsSuccess returns true when this get scripts published divisionviews not found response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsNotFound) String

type GetScriptsPublishedDivisionviewsOK

type GetScriptsPublishedDivisionviewsOK struct {
	Payload *models.ScriptEntityListing
}

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

successful operation

func NewGetScriptsPublishedDivisionviewsOK

func NewGetScriptsPublishedDivisionviewsOK() *GetScriptsPublishedDivisionviewsOK

NewGetScriptsPublishedDivisionviewsOK creates a GetScriptsPublishedDivisionviewsOK with default headers values

func (*GetScriptsPublishedDivisionviewsOK) Error

func (*GetScriptsPublishedDivisionviewsOK) GetPayload

func (*GetScriptsPublishedDivisionviewsOK) IsClientError

func (o *GetScriptsPublishedDivisionviewsOK) IsClientError() bool

IsClientError returns true when this get scripts published divisionviews o k response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsOK) IsCode

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

func (*GetScriptsPublishedDivisionviewsOK) IsRedirect

func (o *GetScriptsPublishedDivisionviewsOK) IsRedirect() bool

IsRedirect returns true when this get scripts published divisionviews o k response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsOK) IsServerError

func (o *GetScriptsPublishedDivisionviewsOK) IsServerError() bool

IsServerError returns true when this get scripts published divisionviews o k response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsOK) IsSuccess

IsSuccess returns true when this get scripts published divisionviews o k response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsOK) String

type GetScriptsPublishedDivisionviewsParams

type GetScriptsPublishedDivisionviewsParams struct {

	/* DivisionIds.

	   Filters scripts to requested divisionIds
	*/
	DivisionIds *string

	/* Expand.

	   Expand
	*/
	Expand *string

	/* Feature.

	   Feature filter
	*/
	Feature *string

	/* FlowID.

	   Secure flow id filter
	*/
	FlowID *string

	/* Name.

	   Name filter
	*/
	Name *string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

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

GetScriptsPublishedDivisionviewsParams contains all the parameters to send to the API endpoint

for the get scripts published divisionviews operation.

Typically these are written to a http.Request.

func NewGetScriptsPublishedDivisionviewsParams

func NewGetScriptsPublishedDivisionviewsParams() *GetScriptsPublishedDivisionviewsParams

NewGetScriptsPublishedDivisionviewsParams creates a new GetScriptsPublishedDivisionviewsParams 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 NewGetScriptsPublishedDivisionviewsParamsWithContext

func NewGetScriptsPublishedDivisionviewsParamsWithContext(ctx context.Context) *GetScriptsPublishedDivisionviewsParams

NewGetScriptsPublishedDivisionviewsParamsWithContext creates a new GetScriptsPublishedDivisionviewsParams object with the ability to set a context for a request.

func NewGetScriptsPublishedDivisionviewsParamsWithHTTPClient

func NewGetScriptsPublishedDivisionviewsParamsWithHTTPClient(client *http.Client) *GetScriptsPublishedDivisionviewsParams

NewGetScriptsPublishedDivisionviewsParamsWithHTTPClient creates a new GetScriptsPublishedDivisionviewsParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsPublishedDivisionviewsParamsWithTimeout

func NewGetScriptsPublishedDivisionviewsParamsWithTimeout(timeout time.Duration) *GetScriptsPublishedDivisionviewsParams

NewGetScriptsPublishedDivisionviewsParamsWithTimeout creates a new GetScriptsPublishedDivisionviewsParams object with the ability to set a timeout on a request.

func (*GetScriptsPublishedDivisionviewsParams) SetContext

SetContext adds the context to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetDefaults

func (o *GetScriptsPublishedDivisionviewsParams) SetDefaults()

SetDefaults hydrates default values in the get scripts published divisionviews params (not the query body).

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

func (*GetScriptsPublishedDivisionviewsParams) SetDivisionIds

func (o *GetScriptsPublishedDivisionviewsParams) SetDivisionIds(divisionIds *string)

SetDivisionIds adds the divisionIds to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetExpand

func (o *GetScriptsPublishedDivisionviewsParams) SetExpand(expand *string)

SetExpand adds the expand to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetFeature

func (o *GetScriptsPublishedDivisionviewsParams) SetFeature(feature *string)

SetFeature adds the feature to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetFlowID

func (o *GetScriptsPublishedDivisionviewsParams) SetFlowID(flowID *string)

SetFlowID adds the flowId to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetName

SetName adds the name to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetPageNumber

func (o *GetScriptsPublishedDivisionviewsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetPageSize

func (o *GetScriptsPublishedDivisionviewsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetScriptDataVersion

func (o *GetScriptsPublishedDivisionviewsParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) SetTimeout

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

SetTimeout adds the timeout to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithContext

WithContext adds the context to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithDefaults

WithDefaults hydrates default values in the get scripts published divisionviews params (not the query body).

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

func (*GetScriptsPublishedDivisionviewsParams) WithDivisionIds

WithDivisionIds adds the divisionIds to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithExpand

WithExpand adds the expand to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithFeature

WithFeature adds the feature to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithFlowID

WithFlowID adds the flowID to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithName

WithName adds the name to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithPageNumber

WithPageNumber adds the pageNumber to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithPageSize

WithPageSize adds the pageSize to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithScriptDataVersion

func (o *GetScriptsPublishedDivisionviewsParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptsPublishedDivisionviewsParams

WithScriptDataVersion adds the scriptDataVersion to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WithTimeout

WithTimeout adds the timeout to the get scripts published divisionviews params

func (*GetScriptsPublishedDivisionviewsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetScriptsPublishedDivisionviewsReader

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

GetScriptsPublishedDivisionviewsReader is a Reader for the GetScriptsPublishedDivisionviews structure.

func (*GetScriptsPublishedDivisionviewsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsPublishedDivisionviewsRequestEntityTooLarge

type GetScriptsPublishedDivisionviewsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedDivisionviewsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsPublishedDivisionviewsRequestEntityTooLarge

func NewGetScriptsPublishedDivisionviewsRequestEntityTooLarge() *GetScriptsPublishedDivisionviewsRequestEntityTooLarge

NewGetScriptsPublishedDivisionviewsRequestEntityTooLarge creates a GetScriptsPublishedDivisionviewsRequestEntityTooLarge with default headers values

func (*GetScriptsPublishedDivisionviewsRequestEntityTooLarge) Error

func (*GetScriptsPublishedDivisionviewsRequestEntityTooLarge) GetPayload

func (*GetScriptsPublishedDivisionviewsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get scripts published divisionviews request entity too large response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsRequestEntityTooLarge) IsCode

IsCode returns true when this get scripts published divisionviews request entity too large response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get scripts published divisionviews request entity too large response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get scripts published divisionviews request entity too large response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get scripts published divisionviews request entity too large response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsRequestEntityTooLarge) String

type GetScriptsPublishedDivisionviewsRequestTimeout

type GetScriptsPublishedDivisionviewsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedDivisionviewsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsPublishedDivisionviewsRequestTimeout

func NewGetScriptsPublishedDivisionviewsRequestTimeout() *GetScriptsPublishedDivisionviewsRequestTimeout

NewGetScriptsPublishedDivisionviewsRequestTimeout creates a GetScriptsPublishedDivisionviewsRequestTimeout with default headers values

func (*GetScriptsPublishedDivisionviewsRequestTimeout) Error

func (*GetScriptsPublishedDivisionviewsRequestTimeout) GetPayload

func (*GetScriptsPublishedDivisionviewsRequestTimeout) IsClientError

IsClientError returns true when this get scripts published divisionviews request timeout response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsRequestTimeout) IsCode

IsCode returns true when this get scripts published divisionviews request timeout response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsRequestTimeout) IsRedirect

IsRedirect returns true when this get scripts published divisionviews request timeout response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsRequestTimeout) IsServerError

IsServerError returns true when this get scripts published divisionviews request timeout response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsRequestTimeout) IsSuccess

IsSuccess returns true when this get scripts published divisionviews request timeout response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsRequestTimeout) String

type GetScriptsPublishedDivisionviewsServiceUnavailable

type GetScriptsPublishedDivisionviewsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedDivisionviewsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsPublishedDivisionviewsServiceUnavailable

func NewGetScriptsPublishedDivisionviewsServiceUnavailable() *GetScriptsPublishedDivisionviewsServiceUnavailable

NewGetScriptsPublishedDivisionviewsServiceUnavailable creates a GetScriptsPublishedDivisionviewsServiceUnavailable with default headers values

func (*GetScriptsPublishedDivisionviewsServiceUnavailable) Error

func (*GetScriptsPublishedDivisionviewsServiceUnavailable) GetPayload

func (*GetScriptsPublishedDivisionviewsServiceUnavailable) IsClientError

IsClientError returns true when this get scripts published divisionviews service unavailable response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsServiceUnavailable) IsCode

IsCode returns true when this get scripts published divisionviews service unavailable response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsServiceUnavailable) IsRedirect

IsRedirect returns true when this get scripts published divisionviews service unavailable response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsServiceUnavailable) IsServerError

IsServerError returns true when this get scripts published divisionviews service unavailable response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsServiceUnavailable) IsSuccess

IsSuccess returns true when this get scripts published divisionviews service unavailable response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsServiceUnavailable) String

type GetScriptsPublishedDivisionviewsTooManyRequests

type GetScriptsPublishedDivisionviewsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedDivisionviewsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsPublishedDivisionviewsTooManyRequests

func NewGetScriptsPublishedDivisionviewsTooManyRequests() *GetScriptsPublishedDivisionviewsTooManyRequests

NewGetScriptsPublishedDivisionviewsTooManyRequests creates a GetScriptsPublishedDivisionviewsTooManyRequests with default headers values

func (*GetScriptsPublishedDivisionviewsTooManyRequests) Error

func (*GetScriptsPublishedDivisionviewsTooManyRequests) GetPayload

func (*GetScriptsPublishedDivisionviewsTooManyRequests) IsClientError

IsClientError returns true when this get scripts published divisionviews too many requests response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsTooManyRequests) IsCode

IsCode returns true when this get scripts published divisionviews too many requests response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsTooManyRequests) IsRedirect

IsRedirect returns true when this get scripts published divisionviews too many requests response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsTooManyRequests) IsServerError

IsServerError returns true when this get scripts published divisionviews too many requests response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsTooManyRequests) IsSuccess

IsSuccess returns true when this get scripts published divisionviews too many requests response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsTooManyRequests) String

type GetScriptsPublishedDivisionviewsUnauthorized

type GetScriptsPublishedDivisionviewsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsPublishedDivisionviewsUnauthorized

func NewGetScriptsPublishedDivisionviewsUnauthorized() *GetScriptsPublishedDivisionviewsUnauthorized

NewGetScriptsPublishedDivisionviewsUnauthorized creates a GetScriptsPublishedDivisionviewsUnauthorized with default headers values

func (*GetScriptsPublishedDivisionviewsUnauthorized) Error

func (*GetScriptsPublishedDivisionviewsUnauthorized) GetPayload

func (*GetScriptsPublishedDivisionviewsUnauthorized) IsClientError

IsClientError returns true when this get scripts published divisionviews unauthorized response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsUnauthorized) IsCode

IsCode returns true when this get scripts published divisionviews unauthorized response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsUnauthorized) IsRedirect

IsRedirect returns true when this get scripts published divisionviews unauthorized response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsUnauthorized) IsServerError

IsServerError returns true when this get scripts published divisionviews unauthorized response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsUnauthorized) IsSuccess

IsSuccess returns true when this get scripts published divisionviews unauthorized response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsUnauthorized) String

type GetScriptsPublishedDivisionviewsUnsupportedMediaType

type GetScriptsPublishedDivisionviewsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedDivisionviewsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsPublishedDivisionviewsUnsupportedMediaType

func NewGetScriptsPublishedDivisionviewsUnsupportedMediaType() *GetScriptsPublishedDivisionviewsUnsupportedMediaType

NewGetScriptsPublishedDivisionviewsUnsupportedMediaType creates a GetScriptsPublishedDivisionviewsUnsupportedMediaType with default headers values

func (*GetScriptsPublishedDivisionviewsUnsupportedMediaType) Error

func (*GetScriptsPublishedDivisionviewsUnsupportedMediaType) GetPayload

func (*GetScriptsPublishedDivisionviewsUnsupportedMediaType) IsClientError

IsClientError returns true when this get scripts published divisionviews unsupported media type response has a 4xx status code

func (*GetScriptsPublishedDivisionviewsUnsupportedMediaType) IsCode

IsCode returns true when this get scripts published divisionviews unsupported media type response a status code equal to that given

func (*GetScriptsPublishedDivisionviewsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get scripts published divisionviews unsupported media type response has a 3xx status code

func (*GetScriptsPublishedDivisionviewsUnsupportedMediaType) IsServerError

IsServerError returns true when this get scripts published divisionviews unsupported media type response has a 5xx status code

func (*GetScriptsPublishedDivisionviewsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get scripts published divisionviews unsupported media type response has a 2xx status code

func (*GetScriptsPublishedDivisionviewsUnsupportedMediaType) String

type GetScriptsPublishedForbidden

type GetScriptsPublishedForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsPublishedForbidden

func NewGetScriptsPublishedForbidden() *GetScriptsPublishedForbidden

NewGetScriptsPublishedForbidden creates a GetScriptsPublishedForbidden with default headers values

func (*GetScriptsPublishedForbidden) Error

func (*GetScriptsPublishedForbidden) GetPayload

func (*GetScriptsPublishedForbidden) IsClientError

func (o *GetScriptsPublishedForbidden) IsClientError() bool

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

func (*GetScriptsPublishedForbidden) IsCode

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

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

func (*GetScriptsPublishedForbidden) IsRedirect

func (o *GetScriptsPublishedForbidden) IsRedirect() bool

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

func (*GetScriptsPublishedForbidden) IsServerError

func (o *GetScriptsPublishedForbidden) IsServerError() bool

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

func (*GetScriptsPublishedForbidden) IsSuccess

func (o *GetScriptsPublishedForbidden) IsSuccess() bool

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

func (*GetScriptsPublishedForbidden) String

type GetScriptsPublishedGatewayTimeout

type GetScriptsPublishedGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsPublishedGatewayTimeout

func NewGetScriptsPublishedGatewayTimeout() *GetScriptsPublishedGatewayTimeout

NewGetScriptsPublishedGatewayTimeout creates a GetScriptsPublishedGatewayTimeout with default headers values

func (*GetScriptsPublishedGatewayTimeout) Error

func (*GetScriptsPublishedGatewayTimeout) GetPayload

func (*GetScriptsPublishedGatewayTimeout) IsClientError

func (o *GetScriptsPublishedGatewayTimeout) IsClientError() bool

IsClientError returns true when this get scripts published gateway timeout response has a 4xx status code

func (*GetScriptsPublishedGatewayTimeout) IsCode

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

IsCode returns true when this get scripts published gateway timeout response a status code equal to that given

func (*GetScriptsPublishedGatewayTimeout) IsRedirect

func (o *GetScriptsPublishedGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this get scripts published gateway timeout response has a 3xx status code

func (*GetScriptsPublishedGatewayTimeout) IsServerError

func (o *GetScriptsPublishedGatewayTimeout) IsServerError() bool

IsServerError returns true when this get scripts published gateway timeout response has a 5xx status code

func (*GetScriptsPublishedGatewayTimeout) IsSuccess

func (o *GetScriptsPublishedGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this get scripts published gateway timeout response has a 2xx status code

func (*GetScriptsPublishedGatewayTimeout) String

type GetScriptsPublishedInternalServerError

type GetScriptsPublishedInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsPublishedInternalServerError

func NewGetScriptsPublishedInternalServerError() *GetScriptsPublishedInternalServerError

NewGetScriptsPublishedInternalServerError creates a GetScriptsPublishedInternalServerError with default headers values

func (*GetScriptsPublishedInternalServerError) Error

func (*GetScriptsPublishedInternalServerError) GetPayload

func (*GetScriptsPublishedInternalServerError) IsClientError

func (o *GetScriptsPublishedInternalServerError) IsClientError() bool

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

func (*GetScriptsPublishedInternalServerError) IsCode

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

func (*GetScriptsPublishedInternalServerError) IsRedirect

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

func (*GetScriptsPublishedInternalServerError) IsServerError

func (o *GetScriptsPublishedInternalServerError) IsServerError() bool

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

func (*GetScriptsPublishedInternalServerError) IsSuccess

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

func (*GetScriptsPublishedInternalServerError) String

type GetScriptsPublishedNotFound

type GetScriptsPublishedNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsPublishedNotFound

func NewGetScriptsPublishedNotFound() *GetScriptsPublishedNotFound

NewGetScriptsPublishedNotFound creates a GetScriptsPublishedNotFound with default headers values

func (*GetScriptsPublishedNotFound) Error

func (*GetScriptsPublishedNotFound) GetPayload

func (o *GetScriptsPublishedNotFound) GetPayload() *models.ErrorBody

func (*GetScriptsPublishedNotFound) IsClientError

func (o *GetScriptsPublishedNotFound) IsClientError() bool

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

func (*GetScriptsPublishedNotFound) IsCode

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

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

func (*GetScriptsPublishedNotFound) IsRedirect

func (o *GetScriptsPublishedNotFound) IsRedirect() bool

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

func (*GetScriptsPublishedNotFound) IsServerError

func (o *GetScriptsPublishedNotFound) IsServerError() bool

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

func (*GetScriptsPublishedNotFound) IsSuccess

func (o *GetScriptsPublishedNotFound) IsSuccess() bool

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

func (*GetScriptsPublishedNotFound) String

func (o *GetScriptsPublishedNotFound) String() string

type GetScriptsPublishedOK

type GetScriptsPublishedOK struct {
	Payload *models.ScriptEntityListing
}

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

successful operation

func NewGetScriptsPublishedOK

func NewGetScriptsPublishedOK() *GetScriptsPublishedOK

NewGetScriptsPublishedOK creates a GetScriptsPublishedOK with default headers values

func (*GetScriptsPublishedOK) Error

func (o *GetScriptsPublishedOK) Error() string

func (*GetScriptsPublishedOK) GetPayload

func (*GetScriptsPublishedOK) IsClientError

func (o *GetScriptsPublishedOK) IsClientError() bool

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

func (*GetScriptsPublishedOK) IsCode

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

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

func (*GetScriptsPublishedOK) IsRedirect

func (o *GetScriptsPublishedOK) IsRedirect() bool

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

func (*GetScriptsPublishedOK) IsServerError

func (o *GetScriptsPublishedOK) IsServerError() bool

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

func (*GetScriptsPublishedOK) IsSuccess

func (o *GetScriptsPublishedOK) IsSuccess() bool

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

func (*GetScriptsPublishedOK) String

func (o *GetScriptsPublishedOK) String() string

type GetScriptsPublishedParams

type GetScriptsPublishedParams struct {

	/* DivisionIds.

	   Filters scripts to requested divisionIds
	*/
	DivisionIds *string

	/* Expand.

	   Expand
	*/
	Expand *string

	/* Feature.

	   Feature filter
	*/
	Feature *string

	/* FlowID.

	   Secure flow id filter
	*/
	FlowID *string

	/* Name.

	   Name filter
	*/
	Name *string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

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

GetScriptsPublishedParams contains all the parameters to send to the API endpoint

for the get scripts published operation.

Typically these are written to a http.Request.

func NewGetScriptsPublishedParams

func NewGetScriptsPublishedParams() *GetScriptsPublishedParams

NewGetScriptsPublishedParams creates a new GetScriptsPublishedParams 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 NewGetScriptsPublishedParamsWithContext

func NewGetScriptsPublishedParamsWithContext(ctx context.Context) *GetScriptsPublishedParams

NewGetScriptsPublishedParamsWithContext creates a new GetScriptsPublishedParams object with the ability to set a context for a request.

func NewGetScriptsPublishedParamsWithHTTPClient

func NewGetScriptsPublishedParamsWithHTTPClient(client *http.Client) *GetScriptsPublishedParams

NewGetScriptsPublishedParamsWithHTTPClient creates a new GetScriptsPublishedParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsPublishedParamsWithTimeout

func NewGetScriptsPublishedParamsWithTimeout(timeout time.Duration) *GetScriptsPublishedParams

NewGetScriptsPublishedParamsWithTimeout creates a new GetScriptsPublishedParams object with the ability to set a timeout on a request.

func (*GetScriptsPublishedParams) SetContext

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

SetContext adds the context to the get scripts published params

func (*GetScriptsPublishedParams) SetDefaults

func (o *GetScriptsPublishedParams) SetDefaults()

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

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

func (*GetScriptsPublishedParams) SetDivisionIds

func (o *GetScriptsPublishedParams) SetDivisionIds(divisionIds *string)

SetDivisionIds adds the divisionIds to the get scripts published params

func (*GetScriptsPublishedParams) SetExpand

func (o *GetScriptsPublishedParams) SetExpand(expand *string)

SetExpand adds the expand to the get scripts published params

func (*GetScriptsPublishedParams) SetFeature

func (o *GetScriptsPublishedParams) SetFeature(feature *string)

SetFeature adds the feature to the get scripts published params

func (*GetScriptsPublishedParams) SetFlowID

func (o *GetScriptsPublishedParams) SetFlowID(flowID *string)

SetFlowID adds the flowId to the get scripts published params

func (*GetScriptsPublishedParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts published params

func (*GetScriptsPublishedParams) SetName

func (o *GetScriptsPublishedParams) SetName(name *string)

SetName adds the name to the get scripts published params

func (*GetScriptsPublishedParams) SetPageNumber

func (o *GetScriptsPublishedParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get scripts published params

func (*GetScriptsPublishedParams) SetPageSize

func (o *GetScriptsPublishedParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get scripts published params

func (*GetScriptsPublishedParams) SetScriptDataVersion

func (o *GetScriptsPublishedParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get scripts published params

func (*GetScriptsPublishedParams) SetTimeout

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

SetTimeout adds the timeout to the get scripts published params

func (*GetScriptsPublishedParams) WithContext

WithContext adds the context to the get scripts published params

func (*GetScriptsPublishedParams) WithDefaults

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

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

func (*GetScriptsPublishedParams) WithDivisionIds

func (o *GetScriptsPublishedParams) WithDivisionIds(divisionIds *string) *GetScriptsPublishedParams

WithDivisionIds adds the divisionIds to the get scripts published params

func (*GetScriptsPublishedParams) WithExpand

WithExpand adds the expand to the get scripts published params

func (*GetScriptsPublishedParams) WithFeature

WithFeature adds the feature to the get scripts published params

func (*GetScriptsPublishedParams) WithFlowID

WithFlowID adds the flowID to the get scripts published params

func (*GetScriptsPublishedParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get scripts published params

func (*GetScriptsPublishedParams) WithName

WithName adds the name to the get scripts published params

func (*GetScriptsPublishedParams) WithPageNumber

func (o *GetScriptsPublishedParams) WithPageNumber(pageNumber *int32) *GetScriptsPublishedParams

WithPageNumber adds the pageNumber to the get scripts published params

func (*GetScriptsPublishedParams) WithPageSize

func (o *GetScriptsPublishedParams) WithPageSize(pageSize *int32) *GetScriptsPublishedParams

WithPageSize adds the pageSize to the get scripts published params

func (*GetScriptsPublishedParams) WithScriptDataVersion

func (o *GetScriptsPublishedParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptsPublishedParams

WithScriptDataVersion adds the scriptDataVersion to the get scripts published params

func (*GetScriptsPublishedParams) WithTimeout

WithTimeout adds the timeout to the get scripts published params

func (*GetScriptsPublishedParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetScriptsPublishedReader

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

GetScriptsPublishedReader is a Reader for the GetScriptsPublished structure.

func (*GetScriptsPublishedReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsPublishedRequestEntityTooLarge

type GetScriptsPublishedRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsPublishedRequestEntityTooLarge

func NewGetScriptsPublishedRequestEntityTooLarge() *GetScriptsPublishedRequestEntityTooLarge

NewGetScriptsPublishedRequestEntityTooLarge creates a GetScriptsPublishedRequestEntityTooLarge with default headers values

func (*GetScriptsPublishedRequestEntityTooLarge) Error

func (*GetScriptsPublishedRequestEntityTooLarge) GetPayload

func (*GetScriptsPublishedRequestEntityTooLarge) IsClientError

IsClientError returns true when this get scripts published request entity too large response has a 4xx status code

func (*GetScriptsPublishedRequestEntityTooLarge) IsCode

IsCode returns true when this get scripts published request entity too large response a status code equal to that given

func (*GetScriptsPublishedRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get scripts published request entity too large response has a 3xx status code

func (*GetScriptsPublishedRequestEntityTooLarge) IsServerError

IsServerError returns true when this get scripts published request entity too large response has a 5xx status code

func (*GetScriptsPublishedRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get scripts published request entity too large response has a 2xx status code

func (*GetScriptsPublishedRequestEntityTooLarge) String

type GetScriptsPublishedRequestTimeout

type GetScriptsPublishedRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsPublishedRequestTimeout

func NewGetScriptsPublishedRequestTimeout() *GetScriptsPublishedRequestTimeout

NewGetScriptsPublishedRequestTimeout creates a GetScriptsPublishedRequestTimeout with default headers values

func (*GetScriptsPublishedRequestTimeout) Error

func (*GetScriptsPublishedRequestTimeout) GetPayload

func (*GetScriptsPublishedRequestTimeout) IsClientError

func (o *GetScriptsPublishedRequestTimeout) IsClientError() bool

IsClientError returns true when this get scripts published request timeout response has a 4xx status code

func (*GetScriptsPublishedRequestTimeout) IsCode

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

IsCode returns true when this get scripts published request timeout response a status code equal to that given

func (*GetScriptsPublishedRequestTimeout) IsRedirect

func (o *GetScriptsPublishedRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get scripts published request timeout response has a 3xx status code

func (*GetScriptsPublishedRequestTimeout) IsServerError

func (o *GetScriptsPublishedRequestTimeout) IsServerError() bool

IsServerError returns true when this get scripts published request timeout response has a 5xx status code

func (*GetScriptsPublishedRequestTimeout) IsSuccess

func (o *GetScriptsPublishedRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get scripts published request timeout response has a 2xx status code

func (*GetScriptsPublishedRequestTimeout) String

type GetScriptsPublishedScriptIDBadRequest

type GetScriptsPublishedScriptIDBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsPublishedScriptIDBadRequest

func NewGetScriptsPublishedScriptIDBadRequest() *GetScriptsPublishedScriptIDBadRequest

NewGetScriptsPublishedScriptIDBadRequest creates a GetScriptsPublishedScriptIDBadRequest with default headers values

func (*GetScriptsPublishedScriptIDBadRequest) Error

func (*GetScriptsPublishedScriptIDBadRequest) GetPayload

func (*GetScriptsPublishedScriptIDBadRequest) IsClientError

func (o *GetScriptsPublishedScriptIDBadRequest) IsClientError() bool

IsClientError returns true when this get scripts published script Id bad request response has a 4xx status code

func (*GetScriptsPublishedScriptIDBadRequest) IsCode

IsCode returns true when this get scripts published script Id bad request response a status code equal to that given

func (*GetScriptsPublishedScriptIDBadRequest) IsRedirect

IsRedirect returns true when this get scripts published script Id bad request response has a 3xx status code

func (*GetScriptsPublishedScriptIDBadRequest) IsServerError

func (o *GetScriptsPublishedScriptIDBadRequest) IsServerError() bool

IsServerError returns true when this get scripts published script Id bad request response has a 5xx status code

func (*GetScriptsPublishedScriptIDBadRequest) IsSuccess

IsSuccess returns true when this get scripts published script Id bad request response has a 2xx status code

func (*GetScriptsPublishedScriptIDBadRequest) String

type GetScriptsPublishedScriptIDForbidden

type GetScriptsPublishedScriptIDForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsPublishedScriptIDForbidden

func NewGetScriptsPublishedScriptIDForbidden() *GetScriptsPublishedScriptIDForbidden

NewGetScriptsPublishedScriptIDForbidden creates a GetScriptsPublishedScriptIDForbidden with default headers values

func (*GetScriptsPublishedScriptIDForbidden) Error

func (*GetScriptsPublishedScriptIDForbidden) GetPayload

func (*GetScriptsPublishedScriptIDForbidden) IsClientError

func (o *GetScriptsPublishedScriptIDForbidden) IsClientError() bool

IsClientError returns true when this get scripts published script Id forbidden response has a 4xx status code

func (*GetScriptsPublishedScriptIDForbidden) IsCode

IsCode returns true when this get scripts published script Id forbidden response a status code equal to that given

func (*GetScriptsPublishedScriptIDForbidden) IsRedirect

IsRedirect returns true when this get scripts published script Id forbidden response has a 3xx status code

func (*GetScriptsPublishedScriptIDForbidden) IsServerError

func (o *GetScriptsPublishedScriptIDForbidden) IsServerError() bool

IsServerError returns true when this get scripts published script Id forbidden response has a 5xx status code

func (*GetScriptsPublishedScriptIDForbidden) IsSuccess

IsSuccess returns true when this get scripts published script Id forbidden response has a 2xx status code

func (*GetScriptsPublishedScriptIDForbidden) String

type GetScriptsPublishedScriptIDGatewayTimeout

type GetScriptsPublishedScriptIDGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsPublishedScriptIDGatewayTimeout

func NewGetScriptsPublishedScriptIDGatewayTimeout() *GetScriptsPublishedScriptIDGatewayTimeout

NewGetScriptsPublishedScriptIDGatewayTimeout creates a GetScriptsPublishedScriptIDGatewayTimeout with default headers values

func (*GetScriptsPublishedScriptIDGatewayTimeout) Error

func (*GetScriptsPublishedScriptIDGatewayTimeout) GetPayload

func (*GetScriptsPublishedScriptIDGatewayTimeout) IsClientError

IsClientError returns true when this get scripts published script Id gateway timeout response has a 4xx status code

func (*GetScriptsPublishedScriptIDGatewayTimeout) IsCode

IsCode returns true when this get scripts published script Id gateway timeout response a status code equal to that given

func (*GetScriptsPublishedScriptIDGatewayTimeout) IsRedirect

IsRedirect returns true when this get scripts published script Id gateway timeout response has a 3xx status code

func (*GetScriptsPublishedScriptIDGatewayTimeout) IsServerError

IsServerError returns true when this get scripts published script Id gateway timeout response has a 5xx status code

func (*GetScriptsPublishedScriptIDGatewayTimeout) IsSuccess

IsSuccess returns true when this get scripts published script Id gateway timeout response has a 2xx status code

func (*GetScriptsPublishedScriptIDGatewayTimeout) String

type GetScriptsPublishedScriptIDInternalServerError

type GetScriptsPublishedScriptIDInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsPublishedScriptIDInternalServerError

func NewGetScriptsPublishedScriptIDInternalServerError() *GetScriptsPublishedScriptIDInternalServerError

NewGetScriptsPublishedScriptIDInternalServerError creates a GetScriptsPublishedScriptIDInternalServerError with default headers values

func (*GetScriptsPublishedScriptIDInternalServerError) Error

func (*GetScriptsPublishedScriptIDInternalServerError) GetPayload

func (*GetScriptsPublishedScriptIDInternalServerError) IsClientError

IsClientError returns true when this get scripts published script Id internal server error response has a 4xx status code

func (*GetScriptsPublishedScriptIDInternalServerError) IsCode

IsCode returns true when this get scripts published script Id internal server error response a status code equal to that given

func (*GetScriptsPublishedScriptIDInternalServerError) IsRedirect

IsRedirect returns true when this get scripts published script Id internal server error response has a 3xx status code

func (*GetScriptsPublishedScriptIDInternalServerError) IsServerError

IsServerError returns true when this get scripts published script Id internal server error response has a 5xx status code

func (*GetScriptsPublishedScriptIDInternalServerError) IsSuccess

IsSuccess returns true when this get scripts published script Id internal server error response has a 2xx status code

func (*GetScriptsPublishedScriptIDInternalServerError) String

type GetScriptsPublishedScriptIDNotFound

type GetScriptsPublishedScriptIDNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsPublishedScriptIDNotFound

func NewGetScriptsPublishedScriptIDNotFound() *GetScriptsPublishedScriptIDNotFound

NewGetScriptsPublishedScriptIDNotFound creates a GetScriptsPublishedScriptIDNotFound with default headers values

func (*GetScriptsPublishedScriptIDNotFound) Error

func (*GetScriptsPublishedScriptIDNotFound) GetPayload

func (*GetScriptsPublishedScriptIDNotFound) IsClientError

func (o *GetScriptsPublishedScriptIDNotFound) IsClientError() bool

IsClientError returns true when this get scripts published script Id not found response has a 4xx status code

func (*GetScriptsPublishedScriptIDNotFound) IsCode

IsCode returns true when this get scripts published script Id not found response a status code equal to that given

func (*GetScriptsPublishedScriptIDNotFound) IsRedirect

func (o *GetScriptsPublishedScriptIDNotFound) IsRedirect() bool

IsRedirect returns true when this get scripts published script Id not found response has a 3xx status code

func (*GetScriptsPublishedScriptIDNotFound) IsServerError

func (o *GetScriptsPublishedScriptIDNotFound) IsServerError() bool

IsServerError returns true when this get scripts published script Id not found response has a 5xx status code

func (*GetScriptsPublishedScriptIDNotFound) IsSuccess

IsSuccess returns true when this get scripts published script Id not found response has a 2xx status code

func (*GetScriptsPublishedScriptIDNotFound) String

type GetScriptsPublishedScriptIDOK

type GetScriptsPublishedScriptIDOK struct {
	Payload *models.Script
}

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

successful operation

func NewGetScriptsPublishedScriptIDOK

func NewGetScriptsPublishedScriptIDOK() *GetScriptsPublishedScriptIDOK

NewGetScriptsPublishedScriptIDOK creates a GetScriptsPublishedScriptIDOK with default headers values

func (*GetScriptsPublishedScriptIDOK) Error

func (*GetScriptsPublishedScriptIDOK) GetPayload

func (o *GetScriptsPublishedScriptIDOK) GetPayload() *models.Script

func (*GetScriptsPublishedScriptIDOK) IsClientError

func (o *GetScriptsPublishedScriptIDOK) IsClientError() bool

IsClientError returns true when this get scripts published script Id o k response has a 4xx status code

func (*GetScriptsPublishedScriptIDOK) IsCode

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

IsCode returns true when this get scripts published script Id o k response a status code equal to that given

func (*GetScriptsPublishedScriptIDOK) IsRedirect

func (o *GetScriptsPublishedScriptIDOK) IsRedirect() bool

IsRedirect returns true when this get scripts published script Id o k response has a 3xx status code

func (*GetScriptsPublishedScriptIDOK) IsServerError

func (o *GetScriptsPublishedScriptIDOK) IsServerError() bool

IsServerError returns true when this get scripts published script Id o k response has a 5xx status code

func (*GetScriptsPublishedScriptIDOK) IsSuccess

func (o *GetScriptsPublishedScriptIDOK) IsSuccess() bool

IsSuccess returns true when this get scripts published script Id o k response has a 2xx status code

func (*GetScriptsPublishedScriptIDOK) String

type GetScriptsPublishedScriptIDPageBadRequest

type GetScriptsPublishedScriptIDPageBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsPublishedScriptIDPageBadRequest

func NewGetScriptsPublishedScriptIDPageBadRequest() *GetScriptsPublishedScriptIDPageBadRequest

NewGetScriptsPublishedScriptIDPageBadRequest creates a GetScriptsPublishedScriptIDPageBadRequest with default headers values

func (*GetScriptsPublishedScriptIDPageBadRequest) Error

func (*GetScriptsPublishedScriptIDPageBadRequest) GetPayload

func (*GetScriptsPublishedScriptIDPageBadRequest) IsClientError

IsClientError returns true when this get scripts published script Id page bad request response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageBadRequest) IsCode

IsCode returns true when this get scripts published script Id page bad request response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageBadRequest) IsRedirect

IsRedirect returns true when this get scripts published script Id page bad request response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageBadRequest) IsServerError

IsServerError returns true when this get scripts published script Id page bad request response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageBadRequest) IsSuccess

IsSuccess returns true when this get scripts published script Id page bad request response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageBadRequest) String

type GetScriptsPublishedScriptIDPageForbidden

type GetScriptsPublishedScriptIDPageForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsPublishedScriptIDPageForbidden

func NewGetScriptsPublishedScriptIDPageForbidden() *GetScriptsPublishedScriptIDPageForbidden

NewGetScriptsPublishedScriptIDPageForbidden creates a GetScriptsPublishedScriptIDPageForbidden with default headers values

func (*GetScriptsPublishedScriptIDPageForbidden) Error

func (*GetScriptsPublishedScriptIDPageForbidden) GetPayload

func (*GetScriptsPublishedScriptIDPageForbidden) IsClientError

IsClientError returns true when this get scripts published script Id page forbidden response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageForbidden) IsCode

IsCode returns true when this get scripts published script Id page forbidden response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageForbidden) IsRedirect

IsRedirect returns true when this get scripts published script Id page forbidden response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageForbidden) IsServerError

IsServerError returns true when this get scripts published script Id page forbidden response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageForbidden) IsSuccess

IsSuccess returns true when this get scripts published script Id page forbidden response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageForbidden) String

type GetScriptsPublishedScriptIDPageGatewayTimeout

type GetScriptsPublishedScriptIDPageGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPageGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsPublishedScriptIDPageGatewayTimeout

func NewGetScriptsPublishedScriptIDPageGatewayTimeout() *GetScriptsPublishedScriptIDPageGatewayTimeout

NewGetScriptsPublishedScriptIDPageGatewayTimeout creates a GetScriptsPublishedScriptIDPageGatewayTimeout with default headers values

func (*GetScriptsPublishedScriptIDPageGatewayTimeout) Error

func (*GetScriptsPublishedScriptIDPageGatewayTimeout) GetPayload

func (*GetScriptsPublishedScriptIDPageGatewayTimeout) IsClientError

IsClientError returns true when this get scripts published script Id page gateway timeout response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageGatewayTimeout) IsCode

IsCode returns true when this get scripts published script Id page gateway timeout response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageGatewayTimeout) IsRedirect

IsRedirect returns true when this get scripts published script Id page gateway timeout response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageGatewayTimeout) IsServerError

IsServerError returns true when this get scripts published script Id page gateway timeout response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageGatewayTimeout) IsSuccess

IsSuccess returns true when this get scripts published script Id page gateway timeout response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageGatewayTimeout) String

type GetScriptsPublishedScriptIDPageInternalServerError

type GetScriptsPublishedScriptIDPageInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsPublishedScriptIDPageInternalServerError

func NewGetScriptsPublishedScriptIDPageInternalServerError() *GetScriptsPublishedScriptIDPageInternalServerError

NewGetScriptsPublishedScriptIDPageInternalServerError creates a GetScriptsPublishedScriptIDPageInternalServerError with default headers values

func (*GetScriptsPublishedScriptIDPageInternalServerError) Error

func (*GetScriptsPublishedScriptIDPageInternalServerError) GetPayload

func (*GetScriptsPublishedScriptIDPageInternalServerError) IsClientError

IsClientError returns true when this get scripts published script Id page internal server error response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageInternalServerError) IsCode

IsCode returns true when this get scripts published script Id page internal server error response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageInternalServerError) IsRedirect

IsRedirect returns true when this get scripts published script Id page internal server error response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageInternalServerError) IsServerError

IsServerError returns true when this get scripts published script Id page internal server error response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageInternalServerError) IsSuccess

IsSuccess returns true when this get scripts published script Id page internal server error response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageInternalServerError) String

type GetScriptsPublishedScriptIDPageNotFound

type GetScriptsPublishedScriptIDPageNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsPublishedScriptIDPageNotFound

func NewGetScriptsPublishedScriptIDPageNotFound() *GetScriptsPublishedScriptIDPageNotFound

NewGetScriptsPublishedScriptIDPageNotFound creates a GetScriptsPublishedScriptIDPageNotFound with default headers values

func (*GetScriptsPublishedScriptIDPageNotFound) Error

func (*GetScriptsPublishedScriptIDPageNotFound) GetPayload

func (*GetScriptsPublishedScriptIDPageNotFound) IsClientError

func (o *GetScriptsPublishedScriptIDPageNotFound) IsClientError() bool

IsClientError returns true when this get scripts published script Id page not found response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageNotFound) IsCode

IsCode returns true when this get scripts published script Id page not found response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageNotFound) IsRedirect

IsRedirect returns true when this get scripts published script Id page not found response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageNotFound) IsServerError

func (o *GetScriptsPublishedScriptIDPageNotFound) IsServerError() bool

IsServerError returns true when this get scripts published script Id page not found response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageNotFound) IsSuccess

IsSuccess returns true when this get scripts published script Id page not found response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageNotFound) String

type GetScriptsPublishedScriptIDPageOK

type GetScriptsPublishedScriptIDPageOK struct {
	Payload *models.Page
}

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

successful operation

func NewGetScriptsPublishedScriptIDPageOK

func NewGetScriptsPublishedScriptIDPageOK() *GetScriptsPublishedScriptIDPageOK

NewGetScriptsPublishedScriptIDPageOK creates a GetScriptsPublishedScriptIDPageOK with default headers values

func (*GetScriptsPublishedScriptIDPageOK) Error

func (*GetScriptsPublishedScriptIDPageOK) GetPayload

func (*GetScriptsPublishedScriptIDPageOK) IsClientError

func (o *GetScriptsPublishedScriptIDPageOK) IsClientError() bool

IsClientError returns true when this get scripts published script Id page o k response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageOK) IsCode

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

IsCode returns true when this get scripts published script Id page o k response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageOK) IsRedirect

func (o *GetScriptsPublishedScriptIDPageOK) IsRedirect() bool

IsRedirect returns true when this get scripts published script Id page o k response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageOK) IsServerError

func (o *GetScriptsPublishedScriptIDPageOK) IsServerError() bool

IsServerError returns true when this get scripts published script Id page o k response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageOK) IsSuccess

func (o *GetScriptsPublishedScriptIDPageOK) IsSuccess() bool

IsSuccess returns true when this get scripts published script Id page o k response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageOK) String

type GetScriptsPublishedScriptIDPageParams

type GetScriptsPublishedScriptIDPageParams struct {

	/* PageID.

	   Page ID
	*/
	PageID string

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

	/* ScriptID.

	   Script ID
	*/
	ScriptID string

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

GetScriptsPublishedScriptIDPageParams contains all the parameters to send to the API endpoint

for the get scripts published script Id page operation.

Typically these are written to a http.Request.

func NewGetScriptsPublishedScriptIDPageParams

func NewGetScriptsPublishedScriptIDPageParams() *GetScriptsPublishedScriptIDPageParams

NewGetScriptsPublishedScriptIDPageParams creates a new GetScriptsPublishedScriptIDPageParams 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 NewGetScriptsPublishedScriptIDPageParamsWithContext

func NewGetScriptsPublishedScriptIDPageParamsWithContext(ctx context.Context) *GetScriptsPublishedScriptIDPageParams

NewGetScriptsPublishedScriptIDPageParamsWithContext creates a new GetScriptsPublishedScriptIDPageParams object with the ability to set a context for a request.

func NewGetScriptsPublishedScriptIDPageParamsWithHTTPClient

func NewGetScriptsPublishedScriptIDPageParamsWithHTTPClient(client *http.Client) *GetScriptsPublishedScriptIDPageParams

NewGetScriptsPublishedScriptIDPageParamsWithHTTPClient creates a new GetScriptsPublishedScriptIDPageParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsPublishedScriptIDPageParamsWithTimeout

func NewGetScriptsPublishedScriptIDPageParamsWithTimeout(timeout time.Duration) *GetScriptsPublishedScriptIDPageParams

NewGetScriptsPublishedScriptIDPageParamsWithTimeout creates a new GetScriptsPublishedScriptIDPageParams object with the ability to set a timeout on a request.

func (*GetScriptsPublishedScriptIDPageParams) SetContext

SetContext adds the context to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) SetDefaults

func (o *GetScriptsPublishedScriptIDPageParams) SetDefaults()

SetDefaults hydrates default values in the get scripts published script Id page params (not the query body).

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

func (*GetScriptsPublishedScriptIDPageParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) SetPageID

func (o *GetScriptsPublishedScriptIDPageParams) SetPageID(pageID string)

SetPageID adds the pageId to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) SetScriptDataVersion

func (o *GetScriptsPublishedScriptIDPageParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) SetScriptID

func (o *GetScriptsPublishedScriptIDPageParams) SetScriptID(scriptID string)

SetScriptID adds the scriptId to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) SetTimeout

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

SetTimeout adds the timeout to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) WithContext

WithContext adds the context to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) WithDefaults

WithDefaults hydrates default values in the get scripts published script Id page params (not the query body).

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

func (*GetScriptsPublishedScriptIDPageParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) WithPageID

WithPageID adds the pageID to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) WithScriptDataVersion

func (o *GetScriptsPublishedScriptIDPageParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptsPublishedScriptIDPageParams

WithScriptDataVersion adds the scriptDataVersion to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) WithScriptID

WithScriptID adds the scriptID to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) WithTimeout

WithTimeout adds the timeout to the get scripts published script Id page params

func (*GetScriptsPublishedScriptIDPageParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetScriptsPublishedScriptIDPageReader

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

GetScriptsPublishedScriptIDPageReader is a Reader for the GetScriptsPublishedScriptIDPage structure.

func (*GetScriptsPublishedScriptIDPageReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsPublishedScriptIDPageRequestEntityTooLarge

type GetScriptsPublishedScriptIDPageRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPageRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsPublishedScriptIDPageRequestEntityTooLarge

func NewGetScriptsPublishedScriptIDPageRequestEntityTooLarge() *GetScriptsPublishedScriptIDPageRequestEntityTooLarge

NewGetScriptsPublishedScriptIDPageRequestEntityTooLarge creates a GetScriptsPublishedScriptIDPageRequestEntityTooLarge with default headers values

func (*GetScriptsPublishedScriptIDPageRequestEntityTooLarge) Error

func (*GetScriptsPublishedScriptIDPageRequestEntityTooLarge) GetPayload

func (*GetScriptsPublishedScriptIDPageRequestEntityTooLarge) IsClientError

IsClientError returns true when this get scripts published script Id page request entity too large response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageRequestEntityTooLarge) IsCode

IsCode returns true when this get scripts published script Id page request entity too large response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get scripts published script Id page request entity too large response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageRequestEntityTooLarge) IsServerError

IsServerError returns true when this get scripts published script Id page request entity too large response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get scripts published script Id page request entity too large response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageRequestEntityTooLarge) String

type GetScriptsPublishedScriptIDPageRequestTimeout

type GetScriptsPublishedScriptIDPageRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPageRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsPublishedScriptIDPageRequestTimeout

func NewGetScriptsPublishedScriptIDPageRequestTimeout() *GetScriptsPublishedScriptIDPageRequestTimeout

NewGetScriptsPublishedScriptIDPageRequestTimeout creates a GetScriptsPublishedScriptIDPageRequestTimeout with default headers values

func (*GetScriptsPublishedScriptIDPageRequestTimeout) Error

func (*GetScriptsPublishedScriptIDPageRequestTimeout) GetPayload

func (*GetScriptsPublishedScriptIDPageRequestTimeout) IsClientError

IsClientError returns true when this get scripts published script Id page request timeout response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageRequestTimeout) IsCode

IsCode returns true when this get scripts published script Id page request timeout response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageRequestTimeout) IsRedirect

IsRedirect returns true when this get scripts published script Id page request timeout response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageRequestTimeout) IsServerError

IsServerError returns true when this get scripts published script Id page request timeout response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageRequestTimeout) IsSuccess

IsSuccess returns true when this get scripts published script Id page request timeout response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageRequestTimeout) String

type GetScriptsPublishedScriptIDPageServiceUnavailable

type GetScriptsPublishedScriptIDPageServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPageServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsPublishedScriptIDPageServiceUnavailable

func NewGetScriptsPublishedScriptIDPageServiceUnavailable() *GetScriptsPublishedScriptIDPageServiceUnavailable

NewGetScriptsPublishedScriptIDPageServiceUnavailable creates a GetScriptsPublishedScriptIDPageServiceUnavailable with default headers values

func (*GetScriptsPublishedScriptIDPageServiceUnavailable) Error

func (*GetScriptsPublishedScriptIDPageServiceUnavailable) GetPayload

func (*GetScriptsPublishedScriptIDPageServiceUnavailable) IsClientError

IsClientError returns true when this get scripts published script Id page service unavailable response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageServiceUnavailable) IsCode

IsCode returns true when this get scripts published script Id page service unavailable response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageServiceUnavailable) IsRedirect

IsRedirect returns true when this get scripts published script Id page service unavailable response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageServiceUnavailable) IsServerError

IsServerError returns true when this get scripts published script Id page service unavailable response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageServiceUnavailable) IsSuccess

IsSuccess returns true when this get scripts published script Id page service unavailable response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageServiceUnavailable) String

type GetScriptsPublishedScriptIDPageTooManyRequests

type GetScriptsPublishedScriptIDPageTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPageTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsPublishedScriptIDPageTooManyRequests

func NewGetScriptsPublishedScriptIDPageTooManyRequests() *GetScriptsPublishedScriptIDPageTooManyRequests

NewGetScriptsPublishedScriptIDPageTooManyRequests creates a GetScriptsPublishedScriptIDPageTooManyRequests with default headers values

func (*GetScriptsPublishedScriptIDPageTooManyRequests) Error

func (*GetScriptsPublishedScriptIDPageTooManyRequests) GetPayload

func (*GetScriptsPublishedScriptIDPageTooManyRequests) IsClientError

IsClientError returns true when this get scripts published script Id page too many requests response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageTooManyRequests) IsCode

IsCode returns true when this get scripts published script Id page too many requests response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageTooManyRequests) IsRedirect

IsRedirect returns true when this get scripts published script Id page too many requests response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageTooManyRequests) IsServerError

IsServerError returns true when this get scripts published script Id page too many requests response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageTooManyRequests) IsSuccess

IsSuccess returns true when this get scripts published script Id page too many requests response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageTooManyRequests) String

type GetScriptsPublishedScriptIDPageUnauthorized

type GetScriptsPublishedScriptIDPageUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsPublishedScriptIDPageUnauthorized

func NewGetScriptsPublishedScriptIDPageUnauthorized() *GetScriptsPublishedScriptIDPageUnauthorized

NewGetScriptsPublishedScriptIDPageUnauthorized creates a GetScriptsPublishedScriptIDPageUnauthorized with default headers values

func (*GetScriptsPublishedScriptIDPageUnauthorized) Error

func (*GetScriptsPublishedScriptIDPageUnauthorized) GetPayload

func (*GetScriptsPublishedScriptIDPageUnauthorized) IsClientError

IsClientError returns true when this get scripts published script Id page unauthorized response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageUnauthorized) IsCode

IsCode returns true when this get scripts published script Id page unauthorized response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageUnauthorized) IsRedirect

IsRedirect returns true when this get scripts published script Id page unauthorized response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageUnauthorized) IsServerError

IsServerError returns true when this get scripts published script Id page unauthorized response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageUnauthorized) IsSuccess

IsSuccess returns true when this get scripts published script Id page unauthorized response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageUnauthorized) String

type GetScriptsPublishedScriptIDPageUnsupportedMediaType

type GetScriptsPublishedScriptIDPageUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPageUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsPublishedScriptIDPageUnsupportedMediaType

func NewGetScriptsPublishedScriptIDPageUnsupportedMediaType() *GetScriptsPublishedScriptIDPageUnsupportedMediaType

NewGetScriptsPublishedScriptIDPageUnsupportedMediaType creates a GetScriptsPublishedScriptIDPageUnsupportedMediaType with default headers values

func (*GetScriptsPublishedScriptIDPageUnsupportedMediaType) Error

func (*GetScriptsPublishedScriptIDPageUnsupportedMediaType) GetPayload

func (*GetScriptsPublishedScriptIDPageUnsupportedMediaType) IsClientError

IsClientError returns true when this get scripts published script Id page unsupported media type response has a 4xx status code

func (*GetScriptsPublishedScriptIDPageUnsupportedMediaType) IsCode

IsCode returns true when this get scripts published script Id page unsupported media type response a status code equal to that given

func (*GetScriptsPublishedScriptIDPageUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get scripts published script Id page unsupported media type response has a 3xx status code

func (*GetScriptsPublishedScriptIDPageUnsupportedMediaType) IsServerError

IsServerError returns true when this get scripts published script Id page unsupported media type response has a 5xx status code

func (*GetScriptsPublishedScriptIDPageUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get scripts published script Id page unsupported media type response has a 2xx status code

func (*GetScriptsPublishedScriptIDPageUnsupportedMediaType) String

type GetScriptsPublishedScriptIDPagesBadRequest

type GetScriptsPublishedScriptIDPagesBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsPublishedScriptIDPagesBadRequest

func NewGetScriptsPublishedScriptIDPagesBadRequest() *GetScriptsPublishedScriptIDPagesBadRequest

NewGetScriptsPublishedScriptIDPagesBadRequest creates a GetScriptsPublishedScriptIDPagesBadRequest with default headers values

func (*GetScriptsPublishedScriptIDPagesBadRequest) Error

func (*GetScriptsPublishedScriptIDPagesBadRequest) GetPayload

func (*GetScriptsPublishedScriptIDPagesBadRequest) IsClientError

IsClientError returns true when this get scripts published script Id pages bad request response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesBadRequest) IsCode

IsCode returns true when this get scripts published script Id pages bad request response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesBadRequest) IsRedirect

IsRedirect returns true when this get scripts published script Id pages bad request response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesBadRequest) IsServerError

IsServerError returns true when this get scripts published script Id pages bad request response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesBadRequest) IsSuccess

IsSuccess returns true when this get scripts published script Id pages bad request response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesBadRequest) String

type GetScriptsPublishedScriptIDPagesForbidden

type GetScriptsPublishedScriptIDPagesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsPublishedScriptIDPagesForbidden

func NewGetScriptsPublishedScriptIDPagesForbidden() *GetScriptsPublishedScriptIDPagesForbidden

NewGetScriptsPublishedScriptIDPagesForbidden creates a GetScriptsPublishedScriptIDPagesForbidden with default headers values

func (*GetScriptsPublishedScriptIDPagesForbidden) Error

func (*GetScriptsPublishedScriptIDPagesForbidden) GetPayload

func (*GetScriptsPublishedScriptIDPagesForbidden) IsClientError

IsClientError returns true when this get scripts published script Id pages forbidden response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesForbidden) IsCode

IsCode returns true when this get scripts published script Id pages forbidden response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesForbidden) IsRedirect

IsRedirect returns true when this get scripts published script Id pages forbidden response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesForbidden) IsServerError

IsServerError returns true when this get scripts published script Id pages forbidden response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesForbidden) IsSuccess

IsSuccess returns true when this get scripts published script Id pages forbidden response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesForbidden) String

type GetScriptsPublishedScriptIDPagesGatewayTimeout

type GetScriptsPublishedScriptIDPagesGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPagesGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsPublishedScriptIDPagesGatewayTimeout

func NewGetScriptsPublishedScriptIDPagesGatewayTimeout() *GetScriptsPublishedScriptIDPagesGatewayTimeout

NewGetScriptsPublishedScriptIDPagesGatewayTimeout creates a GetScriptsPublishedScriptIDPagesGatewayTimeout with default headers values

func (*GetScriptsPublishedScriptIDPagesGatewayTimeout) Error

func (*GetScriptsPublishedScriptIDPagesGatewayTimeout) GetPayload

func (*GetScriptsPublishedScriptIDPagesGatewayTimeout) IsClientError

IsClientError returns true when this get scripts published script Id pages gateway timeout response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesGatewayTimeout) IsCode

IsCode returns true when this get scripts published script Id pages gateway timeout response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesGatewayTimeout) IsRedirect

IsRedirect returns true when this get scripts published script Id pages gateway timeout response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesGatewayTimeout) IsServerError

IsServerError returns true when this get scripts published script Id pages gateway timeout response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesGatewayTimeout) IsSuccess

IsSuccess returns true when this get scripts published script Id pages gateway timeout response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesGatewayTimeout) String

type GetScriptsPublishedScriptIDPagesInternalServerError

type GetScriptsPublishedScriptIDPagesInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsPublishedScriptIDPagesInternalServerError

func NewGetScriptsPublishedScriptIDPagesInternalServerError() *GetScriptsPublishedScriptIDPagesInternalServerError

NewGetScriptsPublishedScriptIDPagesInternalServerError creates a GetScriptsPublishedScriptIDPagesInternalServerError with default headers values

func (*GetScriptsPublishedScriptIDPagesInternalServerError) Error

func (*GetScriptsPublishedScriptIDPagesInternalServerError) GetPayload

func (*GetScriptsPublishedScriptIDPagesInternalServerError) IsClientError

IsClientError returns true when this get scripts published script Id pages internal server error response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesInternalServerError) IsCode

IsCode returns true when this get scripts published script Id pages internal server error response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesInternalServerError) IsRedirect

IsRedirect returns true when this get scripts published script Id pages internal server error response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesInternalServerError) IsServerError

IsServerError returns true when this get scripts published script Id pages internal server error response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesInternalServerError) IsSuccess

IsSuccess returns true when this get scripts published script Id pages internal server error response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesInternalServerError) String

type GetScriptsPublishedScriptIDPagesNotFound

type GetScriptsPublishedScriptIDPagesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsPublishedScriptIDPagesNotFound

func NewGetScriptsPublishedScriptIDPagesNotFound() *GetScriptsPublishedScriptIDPagesNotFound

NewGetScriptsPublishedScriptIDPagesNotFound creates a GetScriptsPublishedScriptIDPagesNotFound with default headers values

func (*GetScriptsPublishedScriptIDPagesNotFound) Error

func (*GetScriptsPublishedScriptIDPagesNotFound) GetPayload

func (*GetScriptsPublishedScriptIDPagesNotFound) IsClientError

IsClientError returns true when this get scripts published script Id pages not found response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesNotFound) IsCode

IsCode returns true when this get scripts published script Id pages not found response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesNotFound) IsRedirect

IsRedirect returns true when this get scripts published script Id pages not found response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesNotFound) IsServerError

IsServerError returns true when this get scripts published script Id pages not found response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesNotFound) IsSuccess

IsSuccess returns true when this get scripts published script Id pages not found response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesNotFound) String

type GetScriptsPublishedScriptIDPagesOK

type GetScriptsPublishedScriptIDPagesOK struct {
	Payload []*models.Page
}

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

successful operation

func NewGetScriptsPublishedScriptIDPagesOK

func NewGetScriptsPublishedScriptIDPagesOK() *GetScriptsPublishedScriptIDPagesOK

NewGetScriptsPublishedScriptIDPagesOK creates a GetScriptsPublishedScriptIDPagesOK with default headers values

func (*GetScriptsPublishedScriptIDPagesOK) Error

func (*GetScriptsPublishedScriptIDPagesOK) GetPayload

func (o *GetScriptsPublishedScriptIDPagesOK) GetPayload() []*models.Page

func (*GetScriptsPublishedScriptIDPagesOK) IsClientError

func (o *GetScriptsPublishedScriptIDPagesOK) IsClientError() bool

IsClientError returns true when this get scripts published script Id pages o k response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesOK) IsCode

IsCode returns true when this get scripts published script Id pages o k response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesOK) IsRedirect

func (o *GetScriptsPublishedScriptIDPagesOK) IsRedirect() bool

IsRedirect returns true when this get scripts published script Id pages o k response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesOK) IsServerError

func (o *GetScriptsPublishedScriptIDPagesOK) IsServerError() bool

IsServerError returns true when this get scripts published script Id pages o k response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesOK) IsSuccess

IsSuccess returns true when this get scripts published script Id pages o k response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesOK) String

type GetScriptsPublishedScriptIDPagesParams

type GetScriptsPublishedScriptIDPagesParams struct {

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

	/* ScriptID.

	   Script ID
	*/
	ScriptID string

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

GetScriptsPublishedScriptIDPagesParams contains all the parameters to send to the API endpoint

for the get scripts published script Id pages operation.

Typically these are written to a http.Request.

func NewGetScriptsPublishedScriptIDPagesParams

func NewGetScriptsPublishedScriptIDPagesParams() *GetScriptsPublishedScriptIDPagesParams

NewGetScriptsPublishedScriptIDPagesParams creates a new GetScriptsPublishedScriptIDPagesParams 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 NewGetScriptsPublishedScriptIDPagesParamsWithContext

func NewGetScriptsPublishedScriptIDPagesParamsWithContext(ctx context.Context) *GetScriptsPublishedScriptIDPagesParams

NewGetScriptsPublishedScriptIDPagesParamsWithContext creates a new GetScriptsPublishedScriptIDPagesParams object with the ability to set a context for a request.

func NewGetScriptsPublishedScriptIDPagesParamsWithHTTPClient

func NewGetScriptsPublishedScriptIDPagesParamsWithHTTPClient(client *http.Client) *GetScriptsPublishedScriptIDPagesParams

NewGetScriptsPublishedScriptIDPagesParamsWithHTTPClient creates a new GetScriptsPublishedScriptIDPagesParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsPublishedScriptIDPagesParamsWithTimeout

func NewGetScriptsPublishedScriptIDPagesParamsWithTimeout(timeout time.Duration) *GetScriptsPublishedScriptIDPagesParams

NewGetScriptsPublishedScriptIDPagesParamsWithTimeout creates a new GetScriptsPublishedScriptIDPagesParams object with the ability to set a timeout on a request.

func (*GetScriptsPublishedScriptIDPagesParams) SetContext

SetContext adds the context to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) SetDefaults

func (o *GetScriptsPublishedScriptIDPagesParams) SetDefaults()

SetDefaults hydrates default values in the get scripts published script Id pages params (not the query body).

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

func (*GetScriptsPublishedScriptIDPagesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) SetScriptDataVersion

func (o *GetScriptsPublishedScriptIDPagesParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) SetScriptID

func (o *GetScriptsPublishedScriptIDPagesParams) SetScriptID(scriptID string)

SetScriptID adds the scriptId to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) SetTimeout

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

SetTimeout adds the timeout to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) WithContext

WithContext adds the context to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) WithDefaults

WithDefaults hydrates default values in the get scripts published script Id pages params (not the query body).

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

func (*GetScriptsPublishedScriptIDPagesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) WithScriptDataVersion

func (o *GetScriptsPublishedScriptIDPagesParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptsPublishedScriptIDPagesParams

WithScriptDataVersion adds the scriptDataVersion to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) WithScriptID

WithScriptID adds the scriptID to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) WithTimeout

WithTimeout adds the timeout to the get scripts published script Id pages params

func (*GetScriptsPublishedScriptIDPagesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetScriptsPublishedScriptIDPagesReader

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

GetScriptsPublishedScriptIDPagesReader is a Reader for the GetScriptsPublishedScriptIDPages structure.

func (*GetScriptsPublishedScriptIDPagesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsPublishedScriptIDPagesRequestEntityTooLarge

type GetScriptsPublishedScriptIDPagesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPagesRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsPublishedScriptIDPagesRequestEntityTooLarge

func NewGetScriptsPublishedScriptIDPagesRequestEntityTooLarge() *GetScriptsPublishedScriptIDPagesRequestEntityTooLarge

NewGetScriptsPublishedScriptIDPagesRequestEntityTooLarge creates a GetScriptsPublishedScriptIDPagesRequestEntityTooLarge with default headers values

func (*GetScriptsPublishedScriptIDPagesRequestEntityTooLarge) Error

func (*GetScriptsPublishedScriptIDPagesRequestEntityTooLarge) GetPayload

func (*GetScriptsPublishedScriptIDPagesRequestEntityTooLarge) IsClientError

IsClientError returns true when this get scripts published script Id pages request entity too large response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesRequestEntityTooLarge) IsCode

IsCode returns true when this get scripts published script Id pages request entity too large response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get scripts published script Id pages request entity too large response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesRequestEntityTooLarge) IsServerError

IsServerError returns true when this get scripts published script Id pages request entity too large response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get scripts published script Id pages request entity too large response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesRequestEntityTooLarge) String

type GetScriptsPublishedScriptIDPagesRequestTimeout

type GetScriptsPublishedScriptIDPagesRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPagesRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsPublishedScriptIDPagesRequestTimeout

func NewGetScriptsPublishedScriptIDPagesRequestTimeout() *GetScriptsPublishedScriptIDPagesRequestTimeout

NewGetScriptsPublishedScriptIDPagesRequestTimeout creates a GetScriptsPublishedScriptIDPagesRequestTimeout with default headers values

func (*GetScriptsPublishedScriptIDPagesRequestTimeout) Error

func (*GetScriptsPublishedScriptIDPagesRequestTimeout) GetPayload

func (*GetScriptsPublishedScriptIDPagesRequestTimeout) IsClientError

IsClientError returns true when this get scripts published script Id pages request timeout response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesRequestTimeout) IsCode

IsCode returns true when this get scripts published script Id pages request timeout response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesRequestTimeout) IsRedirect

IsRedirect returns true when this get scripts published script Id pages request timeout response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesRequestTimeout) IsServerError

IsServerError returns true when this get scripts published script Id pages request timeout response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesRequestTimeout) IsSuccess

IsSuccess returns true when this get scripts published script Id pages request timeout response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesRequestTimeout) String

type GetScriptsPublishedScriptIDPagesServiceUnavailable

type GetScriptsPublishedScriptIDPagesServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPagesServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsPublishedScriptIDPagesServiceUnavailable

func NewGetScriptsPublishedScriptIDPagesServiceUnavailable() *GetScriptsPublishedScriptIDPagesServiceUnavailable

NewGetScriptsPublishedScriptIDPagesServiceUnavailable creates a GetScriptsPublishedScriptIDPagesServiceUnavailable with default headers values

func (*GetScriptsPublishedScriptIDPagesServiceUnavailable) Error

func (*GetScriptsPublishedScriptIDPagesServiceUnavailable) GetPayload

func (*GetScriptsPublishedScriptIDPagesServiceUnavailable) IsClientError

IsClientError returns true when this get scripts published script Id pages service unavailable response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesServiceUnavailable) IsCode

IsCode returns true when this get scripts published script Id pages service unavailable response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesServiceUnavailable) IsRedirect

IsRedirect returns true when this get scripts published script Id pages service unavailable response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesServiceUnavailable) IsServerError

IsServerError returns true when this get scripts published script Id pages service unavailable response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesServiceUnavailable) IsSuccess

IsSuccess returns true when this get scripts published script Id pages service unavailable response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesServiceUnavailable) String

type GetScriptsPublishedScriptIDPagesTooManyRequests

type GetScriptsPublishedScriptIDPagesTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPagesTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsPublishedScriptIDPagesTooManyRequests

func NewGetScriptsPublishedScriptIDPagesTooManyRequests() *GetScriptsPublishedScriptIDPagesTooManyRequests

NewGetScriptsPublishedScriptIDPagesTooManyRequests creates a GetScriptsPublishedScriptIDPagesTooManyRequests with default headers values

func (*GetScriptsPublishedScriptIDPagesTooManyRequests) Error

func (*GetScriptsPublishedScriptIDPagesTooManyRequests) GetPayload

func (*GetScriptsPublishedScriptIDPagesTooManyRequests) IsClientError

IsClientError returns true when this get scripts published script Id pages too many requests response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesTooManyRequests) IsCode

IsCode returns true when this get scripts published script Id pages too many requests response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesTooManyRequests) IsRedirect

IsRedirect returns true when this get scripts published script Id pages too many requests response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesTooManyRequests) IsServerError

IsServerError returns true when this get scripts published script Id pages too many requests response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesTooManyRequests) IsSuccess

IsSuccess returns true when this get scripts published script Id pages too many requests response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesTooManyRequests) String

type GetScriptsPublishedScriptIDPagesUnauthorized

type GetScriptsPublishedScriptIDPagesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsPublishedScriptIDPagesUnauthorized

func NewGetScriptsPublishedScriptIDPagesUnauthorized() *GetScriptsPublishedScriptIDPagesUnauthorized

NewGetScriptsPublishedScriptIDPagesUnauthorized creates a GetScriptsPublishedScriptIDPagesUnauthorized with default headers values

func (*GetScriptsPublishedScriptIDPagesUnauthorized) Error

func (*GetScriptsPublishedScriptIDPagesUnauthorized) GetPayload

func (*GetScriptsPublishedScriptIDPagesUnauthorized) IsClientError

IsClientError returns true when this get scripts published script Id pages unauthorized response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesUnauthorized) IsCode

IsCode returns true when this get scripts published script Id pages unauthorized response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesUnauthorized) IsRedirect

IsRedirect returns true when this get scripts published script Id pages unauthorized response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesUnauthorized) IsServerError

IsServerError returns true when this get scripts published script Id pages unauthorized response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesUnauthorized) IsSuccess

IsSuccess returns true when this get scripts published script Id pages unauthorized response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesUnauthorized) String

type GetScriptsPublishedScriptIDPagesUnsupportedMediaType

type GetScriptsPublishedScriptIDPagesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDPagesUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsPublishedScriptIDPagesUnsupportedMediaType

func NewGetScriptsPublishedScriptIDPagesUnsupportedMediaType() *GetScriptsPublishedScriptIDPagesUnsupportedMediaType

NewGetScriptsPublishedScriptIDPagesUnsupportedMediaType creates a GetScriptsPublishedScriptIDPagesUnsupportedMediaType with default headers values

func (*GetScriptsPublishedScriptIDPagesUnsupportedMediaType) Error

func (*GetScriptsPublishedScriptIDPagesUnsupportedMediaType) GetPayload

func (*GetScriptsPublishedScriptIDPagesUnsupportedMediaType) IsClientError

IsClientError returns true when this get scripts published script Id pages unsupported media type response has a 4xx status code

func (*GetScriptsPublishedScriptIDPagesUnsupportedMediaType) IsCode

IsCode returns true when this get scripts published script Id pages unsupported media type response a status code equal to that given

func (*GetScriptsPublishedScriptIDPagesUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get scripts published script Id pages unsupported media type response has a 3xx status code

func (*GetScriptsPublishedScriptIDPagesUnsupportedMediaType) IsServerError

IsServerError returns true when this get scripts published script Id pages unsupported media type response has a 5xx status code

func (*GetScriptsPublishedScriptIDPagesUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get scripts published script Id pages unsupported media type response has a 2xx status code

func (*GetScriptsPublishedScriptIDPagesUnsupportedMediaType) String

type GetScriptsPublishedScriptIDParams

type GetScriptsPublishedScriptIDParams struct {

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

	/* ScriptID.

	   Script ID
	*/
	ScriptID string

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

GetScriptsPublishedScriptIDParams contains all the parameters to send to the API endpoint

for the get scripts published script Id operation.

Typically these are written to a http.Request.

func NewGetScriptsPublishedScriptIDParams

func NewGetScriptsPublishedScriptIDParams() *GetScriptsPublishedScriptIDParams

NewGetScriptsPublishedScriptIDParams creates a new GetScriptsPublishedScriptIDParams 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 NewGetScriptsPublishedScriptIDParamsWithContext

func NewGetScriptsPublishedScriptIDParamsWithContext(ctx context.Context) *GetScriptsPublishedScriptIDParams

NewGetScriptsPublishedScriptIDParamsWithContext creates a new GetScriptsPublishedScriptIDParams object with the ability to set a context for a request.

func NewGetScriptsPublishedScriptIDParamsWithHTTPClient

func NewGetScriptsPublishedScriptIDParamsWithHTTPClient(client *http.Client) *GetScriptsPublishedScriptIDParams

NewGetScriptsPublishedScriptIDParamsWithHTTPClient creates a new GetScriptsPublishedScriptIDParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsPublishedScriptIDParamsWithTimeout

func NewGetScriptsPublishedScriptIDParamsWithTimeout(timeout time.Duration) *GetScriptsPublishedScriptIDParams

NewGetScriptsPublishedScriptIDParamsWithTimeout creates a new GetScriptsPublishedScriptIDParams object with the ability to set a timeout on a request.

func (*GetScriptsPublishedScriptIDParams) SetContext

SetContext adds the context to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) SetDefaults

func (o *GetScriptsPublishedScriptIDParams) SetDefaults()

SetDefaults hydrates default values in the get scripts published script Id params (not the query body).

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

func (*GetScriptsPublishedScriptIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) SetScriptDataVersion

func (o *GetScriptsPublishedScriptIDParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) SetScriptID

func (o *GetScriptsPublishedScriptIDParams) SetScriptID(scriptID string)

SetScriptID adds the scriptId to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) SetTimeout

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

SetTimeout adds the timeout to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) WithContext

WithContext adds the context to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) WithDefaults

WithDefaults hydrates default values in the get scripts published script Id params (not the query body).

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

func (*GetScriptsPublishedScriptIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) WithScriptDataVersion

func (o *GetScriptsPublishedScriptIDParams) WithScriptDataVersion(scriptDataVersion *string) *GetScriptsPublishedScriptIDParams

WithScriptDataVersion adds the scriptDataVersion to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) WithScriptID

WithScriptID adds the scriptID to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) WithTimeout

WithTimeout adds the timeout to the get scripts published script Id params

func (*GetScriptsPublishedScriptIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetScriptsPublishedScriptIDReader

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

GetScriptsPublishedScriptIDReader is a Reader for the GetScriptsPublishedScriptID structure.

func (*GetScriptsPublishedScriptIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsPublishedScriptIDRequestEntityTooLarge

type GetScriptsPublishedScriptIDRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsPublishedScriptIDRequestEntityTooLarge

func NewGetScriptsPublishedScriptIDRequestEntityTooLarge() *GetScriptsPublishedScriptIDRequestEntityTooLarge

NewGetScriptsPublishedScriptIDRequestEntityTooLarge creates a GetScriptsPublishedScriptIDRequestEntityTooLarge with default headers values

func (*GetScriptsPublishedScriptIDRequestEntityTooLarge) Error

func (*GetScriptsPublishedScriptIDRequestEntityTooLarge) GetPayload

func (*GetScriptsPublishedScriptIDRequestEntityTooLarge) IsClientError

IsClientError returns true when this get scripts published script Id request entity too large response has a 4xx status code

func (*GetScriptsPublishedScriptIDRequestEntityTooLarge) IsCode

IsCode returns true when this get scripts published script Id request entity too large response a status code equal to that given

func (*GetScriptsPublishedScriptIDRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get scripts published script Id request entity too large response has a 3xx status code

func (*GetScriptsPublishedScriptIDRequestEntityTooLarge) IsServerError

IsServerError returns true when this get scripts published script Id request entity too large response has a 5xx status code

func (*GetScriptsPublishedScriptIDRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get scripts published script Id request entity too large response has a 2xx status code

func (*GetScriptsPublishedScriptIDRequestEntityTooLarge) String

type GetScriptsPublishedScriptIDRequestTimeout

type GetScriptsPublishedScriptIDRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsPublishedScriptIDRequestTimeout

func NewGetScriptsPublishedScriptIDRequestTimeout() *GetScriptsPublishedScriptIDRequestTimeout

NewGetScriptsPublishedScriptIDRequestTimeout creates a GetScriptsPublishedScriptIDRequestTimeout with default headers values

func (*GetScriptsPublishedScriptIDRequestTimeout) Error

func (*GetScriptsPublishedScriptIDRequestTimeout) GetPayload

func (*GetScriptsPublishedScriptIDRequestTimeout) IsClientError

IsClientError returns true when this get scripts published script Id request timeout response has a 4xx status code

func (*GetScriptsPublishedScriptIDRequestTimeout) IsCode

IsCode returns true when this get scripts published script Id request timeout response a status code equal to that given

func (*GetScriptsPublishedScriptIDRequestTimeout) IsRedirect

IsRedirect returns true when this get scripts published script Id request timeout response has a 3xx status code

func (*GetScriptsPublishedScriptIDRequestTimeout) IsServerError

IsServerError returns true when this get scripts published script Id request timeout response has a 5xx status code

func (*GetScriptsPublishedScriptIDRequestTimeout) IsSuccess

IsSuccess returns true when this get scripts published script Id request timeout response has a 2xx status code

func (*GetScriptsPublishedScriptIDRequestTimeout) String

type GetScriptsPublishedScriptIDServiceUnavailable

type GetScriptsPublishedScriptIDServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsPublishedScriptIDServiceUnavailable

func NewGetScriptsPublishedScriptIDServiceUnavailable() *GetScriptsPublishedScriptIDServiceUnavailable

NewGetScriptsPublishedScriptIDServiceUnavailable creates a GetScriptsPublishedScriptIDServiceUnavailable with default headers values

func (*GetScriptsPublishedScriptIDServiceUnavailable) Error

func (*GetScriptsPublishedScriptIDServiceUnavailable) GetPayload

func (*GetScriptsPublishedScriptIDServiceUnavailable) IsClientError

IsClientError returns true when this get scripts published script Id service unavailable response has a 4xx status code

func (*GetScriptsPublishedScriptIDServiceUnavailable) IsCode

IsCode returns true when this get scripts published script Id service unavailable response a status code equal to that given

func (*GetScriptsPublishedScriptIDServiceUnavailable) IsRedirect

IsRedirect returns true when this get scripts published script Id service unavailable response has a 3xx status code

func (*GetScriptsPublishedScriptIDServiceUnavailable) IsServerError

IsServerError returns true when this get scripts published script Id service unavailable response has a 5xx status code

func (*GetScriptsPublishedScriptIDServiceUnavailable) IsSuccess

IsSuccess returns true when this get scripts published script Id service unavailable response has a 2xx status code

func (*GetScriptsPublishedScriptIDServiceUnavailable) String

type GetScriptsPublishedScriptIDTooManyRequests

type GetScriptsPublishedScriptIDTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsPublishedScriptIDTooManyRequests

func NewGetScriptsPublishedScriptIDTooManyRequests() *GetScriptsPublishedScriptIDTooManyRequests

NewGetScriptsPublishedScriptIDTooManyRequests creates a GetScriptsPublishedScriptIDTooManyRequests with default headers values

func (*GetScriptsPublishedScriptIDTooManyRequests) Error

func (*GetScriptsPublishedScriptIDTooManyRequests) GetPayload

func (*GetScriptsPublishedScriptIDTooManyRequests) IsClientError

IsClientError returns true when this get scripts published script Id too many requests response has a 4xx status code

func (*GetScriptsPublishedScriptIDTooManyRequests) IsCode

IsCode returns true when this get scripts published script Id too many requests response a status code equal to that given

func (*GetScriptsPublishedScriptIDTooManyRequests) IsRedirect

IsRedirect returns true when this get scripts published script Id too many requests response has a 3xx status code

func (*GetScriptsPublishedScriptIDTooManyRequests) IsServerError

IsServerError returns true when this get scripts published script Id too many requests response has a 5xx status code

func (*GetScriptsPublishedScriptIDTooManyRequests) IsSuccess

IsSuccess returns true when this get scripts published script Id too many requests response has a 2xx status code

func (*GetScriptsPublishedScriptIDTooManyRequests) String

type GetScriptsPublishedScriptIDUnauthorized

type GetScriptsPublishedScriptIDUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsPublishedScriptIDUnauthorized

func NewGetScriptsPublishedScriptIDUnauthorized() *GetScriptsPublishedScriptIDUnauthorized

NewGetScriptsPublishedScriptIDUnauthorized creates a GetScriptsPublishedScriptIDUnauthorized with default headers values

func (*GetScriptsPublishedScriptIDUnauthorized) Error

func (*GetScriptsPublishedScriptIDUnauthorized) GetPayload

func (*GetScriptsPublishedScriptIDUnauthorized) IsClientError

func (o *GetScriptsPublishedScriptIDUnauthorized) IsClientError() bool

IsClientError returns true when this get scripts published script Id unauthorized response has a 4xx status code

func (*GetScriptsPublishedScriptIDUnauthorized) IsCode

IsCode returns true when this get scripts published script Id unauthorized response a status code equal to that given

func (*GetScriptsPublishedScriptIDUnauthorized) IsRedirect

IsRedirect returns true when this get scripts published script Id unauthorized response has a 3xx status code

func (*GetScriptsPublishedScriptIDUnauthorized) IsServerError

func (o *GetScriptsPublishedScriptIDUnauthorized) IsServerError() bool

IsServerError returns true when this get scripts published script Id unauthorized response has a 5xx status code

func (*GetScriptsPublishedScriptIDUnauthorized) IsSuccess

IsSuccess returns true when this get scripts published script Id unauthorized response has a 2xx status code

func (*GetScriptsPublishedScriptIDUnauthorized) String

type GetScriptsPublishedScriptIDUnsupportedMediaType

type GetScriptsPublishedScriptIDUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsPublishedScriptIDUnsupportedMediaType

func NewGetScriptsPublishedScriptIDUnsupportedMediaType() *GetScriptsPublishedScriptIDUnsupportedMediaType

NewGetScriptsPublishedScriptIDUnsupportedMediaType creates a GetScriptsPublishedScriptIDUnsupportedMediaType with default headers values

func (*GetScriptsPublishedScriptIDUnsupportedMediaType) Error

func (*GetScriptsPublishedScriptIDUnsupportedMediaType) GetPayload

func (*GetScriptsPublishedScriptIDUnsupportedMediaType) IsClientError

IsClientError returns true when this get scripts published script Id unsupported media type response has a 4xx status code

func (*GetScriptsPublishedScriptIDUnsupportedMediaType) IsCode

IsCode returns true when this get scripts published script Id unsupported media type response a status code equal to that given

func (*GetScriptsPublishedScriptIDUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get scripts published script Id unsupported media type response has a 3xx status code

func (*GetScriptsPublishedScriptIDUnsupportedMediaType) IsServerError

IsServerError returns true when this get scripts published script Id unsupported media type response has a 5xx status code

func (*GetScriptsPublishedScriptIDUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get scripts published script Id unsupported media type response has a 2xx status code

func (*GetScriptsPublishedScriptIDUnsupportedMediaType) String

type GetScriptsPublishedScriptIDVariablesBadRequest

type GetScriptsPublishedScriptIDVariablesBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsPublishedScriptIDVariablesBadRequest

func NewGetScriptsPublishedScriptIDVariablesBadRequest() *GetScriptsPublishedScriptIDVariablesBadRequest

NewGetScriptsPublishedScriptIDVariablesBadRequest creates a GetScriptsPublishedScriptIDVariablesBadRequest with default headers values

func (*GetScriptsPublishedScriptIDVariablesBadRequest) Error

func (*GetScriptsPublishedScriptIDVariablesBadRequest) GetPayload

func (*GetScriptsPublishedScriptIDVariablesBadRequest) IsClientError

IsClientError returns true when this get scripts published script Id variables bad request response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesBadRequest) IsCode

IsCode returns true when this get scripts published script Id variables bad request response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesBadRequest) IsRedirect

IsRedirect returns true when this get scripts published script Id variables bad request response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesBadRequest) IsServerError

IsServerError returns true when this get scripts published script Id variables bad request response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesBadRequest) IsSuccess

IsSuccess returns true when this get scripts published script Id variables bad request response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesBadRequest) String

type GetScriptsPublishedScriptIDVariablesForbidden

type GetScriptsPublishedScriptIDVariablesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsPublishedScriptIDVariablesForbidden

func NewGetScriptsPublishedScriptIDVariablesForbidden() *GetScriptsPublishedScriptIDVariablesForbidden

NewGetScriptsPublishedScriptIDVariablesForbidden creates a GetScriptsPublishedScriptIDVariablesForbidden with default headers values

func (*GetScriptsPublishedScriptIDVariablesForbidden) Error

func (*GetScriptsPublishedScriptIDVariablesForbidden) GetPayload

func (*GetScriptsPublishedScriptIDVariablesForbidden) IsClientError

IsClientError returns true when this get scripts published script Id variables forbidden response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesForbidden) IsCode

IsCode returns true when this get scripts published script Id variables forbidden response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesForbidden) IsRedirect

IsRedirect returns true when this get scripts published script Id variables forbidden response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesForbidden) IsServerError

IsServerError returns true when this get scripts published script Id variables forbidden response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesForbidden) IsSuccess

IsSuccess returns true when this get scripts published script Id variables forbidden response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesForbidden) String

type GetScriptsPublishedScriptIDVariablesGatewayTimeout

type GetScriptsPublishedScriptIDVariablesGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDVariablesGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsPublishedScriptIDVariablesGatewayTimeout

func NewGetScriptsPublishedScriptIDVariablesGatewayTimeout() *GetScriptsPublishedScriptIDVariablesGatewayTimeout

NewGetScriptsPublishedScriptIDVariablesGatewayTimeout creates a GetScriptsPublishedScriptIDVariablesGatewayTimeout with default headers values

func (*GetScriptsPublishedScriptIDVariablesGatewayTimeout) Error

func (*GetScriptsPublishedScriptIDVariablesGatewayTimeout) GetPayload

func (*GetScriptsPublishedScriptIDVariablesGatewayTimeout) IsClientError

IsClientError returns true when this get scripts published script Id variables gateway timeout response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesGatewayTimeout) IsCode

IsCode returns true when this get scripts published script Id variables gateway timeout response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesGatewayTimeout) IsRedirect

IsRedirect returns true when this get scripts published script Id variables gateway timeout response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesGatewayTimeout) IsServerError

IsServerError returns true when this get scripts published script Id variables gateway timeout response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesGatewayTimeout) IsSuccess

IsSuccess returns true when this get scripts published script Id variables gateway timeout response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesGatewayTimeout) String

type GetScriptsPublishedScriptIDVariablesInternalServerError

type GetScriptsPublishedScriptIDVariablesInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsPublishedScriptIDVariablesInternalServerError

func NewGetScriptsPublishedScriptIDVariablesInternalServerError() *GetScriptsPublishedScriptIDVariablesInternalServerError

NewGetScriptsPublishedScriptIDVariablesInternalServerError creates a GetScriptsPublishedScriptIDVariablesInternalServerError with default headers values

func (*GetScriptsPublishedScriptIDVariablesInternalServerError) Error

func (*GetScriptsPublishedScriptIDVariablesInternalServerError) GetPayload

func (*GetScriptsPublishedScriptIDVariablesInternalServerError) IsClientError

IsClientError returns true when this get scripts published script Id variables internal server error response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesInternalServerError) IsCode

IsCode returns true when this get scripts published script Id variables internal server error response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesInternalServerError) IsRedirect

IsRedirect returns true when this get scripts published script Id variables internal server error response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesInternalServerError) IsServerError

IsServerError returns true when this get scripts published script Id variables internal server error response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesInternalServerError) IsSuccess

IsSuccess returns true when this get scripts published script Id variables internal server error response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesInternalServerError) String

type GetScriptsPublishedScriptIDVariablesNotFound

type GetScriptsPublishedScriptIDVariablesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsPublishedScriptIDVariablesNotFound

func NewGetScriptsPublishedScriptIDVariablesNotFound() *GetScriptsPublishedScriptIDVariablesNotFound

NewGetScriptsPublishedScriptIDVariablesNotFound creates a GetScriptsPublishedScriptIDVariablesNotFound with default headers values

func (*GetScriptsPublishedScriptIDVariablesNotFound) Error

func (*GetScriptsPublishedScriptIDVariablesNotFound) GetPayload

func (*GetScriptsPublishedScriptIDVariablesNotFound) IsClientError

IsClientError returns true when this get scripts published script Id variables not found response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesNotFound) IsCode

IsCode returns true when this get scripts published script Id variables not found response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesNotFound) IsRedirect

IsRedirect returns true when this get scripts published script Id variables not found response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesNotFound) IsServerError

IsServerError returns true when this get scripts published script Id variables not found response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesNotFound) IsSuccess

IsSuccess returns true when this get scripts published script Id variables not found response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesNotFound) String

type GetScriptsPublishedScriptIDVariablesOK

type GetScriptsPublishedScriptIDVariablesOK struct {
	Payload interface{}
}

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

successful operation

func NewGetScriptsPublishedScriptIDVariablesOK

func NewGetScriptsPublishedScriptIDVariablesOK() *GetScriptsPublishedScriptIDVariablesOK

NewGetScriptsPublishedScriptIDVariablesOK creates a GetScriptsPublishedScriptIDVariablesOK with default headers values

func (*GetScriptsPublishedScriptIDVariablesOK) Error

func (*GetScriptsPublishedScriptIDVariablesOK) GetPayload

func (o *GetScriptsPublishedScriptIDVariablesOK) GetPayload() interface{}

func (*GetScriptsPublishedScriptIDVariablesOK) IsClientError

func (o *GetScriptsPublishedScriptIDVariablesOK) IsClientError() bool

IsClientError returns true when this get scripts published script Id variables o k response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesOK) IsCode

IsCode returns true when this get scripts published script Id variables o k response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesOK) IsRedirect

IsRedirect returns true when this get scripts published script Id variables o k response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesOK) IsServerError

func (o *GetScriptsPublishedScriptIDVariablesOK) IsServerError() bool

IsServerError returns true when this get scripts published script Id variables o k response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesOK) IsSuccess

IsSuccess returns true when this get scripts published script Id variables o k response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesOK) String

type GetScriptsPublishedScriptIDVariablesParams

type GetScriptsPublishedScriptIDVariablesParams struct {

	/* Input.

	   input
	*/
	Input *string

	/* Output.

	   output
	*/
	Output *string

	/* ScriptDataVersion.

	   Advanced usage - controls the data version of the script
	*/
	ScriptDataVersion *string

	/* ScriptID.

	   Script ID
	*/
	ScriptID string

	/* Type.

	   type
	*/
	Type *string

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

GetScriptsPublishedScriptIDVariablesParams contains all the parameters to send to the API endpoint

for the get scripts published script Id variables operation.

Typically these are written to a http.Request.

func NewGetScriptsPublishedScriptIDVariablesParams

func NewGetScriptsPublishedScriptIDVariablesParams() *GetScriptsPublishedScriptIDVariablesParams

NewGetScriptsPublishedScriptIDVariablesParams creates a new GetScriptsPublishedScriptIDVariablesParams 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 NewGetScriptsPublishedScriptIDVariablesParamsWithContext

func NewGetScriptsPublishedScriptIDVariablesParamsWithContext(ctx context.Context) *GetScriptsPublishedScriptIDVariablesParams

NewGetScriptsPublishedScriptIDVariablesParamsWithContext creates a new GetScriptsPublishedScriptIDVariablesParams object with the ability to set a context for a request.

func NewGetScriptsPublishedScriptIDVariablesParamsWithHTTPClient

func NewGetScriptsPublishedScriptIDVariablesParamsWithHTTPClient(client *http.Client) *GetScriptsPublishedScriptIDVariablesParams

NewGetScriptsPublishedScriptIDVariablesParamsWithHTTPClient creates a new GetScriptsPublishedScriptIDVariablesParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsPublishedScriptIDVariablesParamsWithTimeout

func NewGetScriptsPublishedScriptIDVariablesParamsWithTimeout(timeout time.Duration) *GetScriptsPublishedScriptIDVariablesParams

NewGetScriptsPublishedScriptIDVariablesParamsWithTimeout creates a new GetScriptsPublishedScriptIDVariablesParams object with the ability to set a timeout on a request.

func (*GetScriptsPublishedScriptIDVariablesParams) SetContext

SetContext adds the context to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) SetDefaults

SetDefaults hydrates default values in the get scripts published script Id variables params (not the query body).

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

func (*GetScriptsPublishedScriptIDVariablesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) SetInput

SetInput adds the input to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) SetOutput

func (o *GetScriptsPublishedScriptIDVariablesParams) SetOutput(output *string)

SetOutput adds the output to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) SetScriptDataVersion

func (o *GetScriptsPublishedScriptIDVariablesParams) SetScriptDataVersion(scriptDataVersion *string)

SetScriptDataVersion adds the scriptDataVersion to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) SetScriptID

func (o *GetScriptsPublishedScriptIDVariablesParams) SetScriptID(scriptID string)

SetScriptID adds the scriptId to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) SetTimeout

SetTimeout adds the timeout to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) SetType

SetType adds the type to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WithContext

WithContext adds the context to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WithDefaults

WithDefaults hydrates default values in the get scripts published script Id variables params (not the query body).

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

func (*GetScriptsPublishedScriptIDVariablesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WithInput

WithInput adds the input to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WithOutput

WithOutput adds the output to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WithScriptDataVersion

WithScriptDataVersion adds the scriptDataVersion to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WithScriptID

WithScriptID adds the scriptID to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WithTimeout

WithTimeout adds the timeout to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WithType

WithType adds the typeVar to the get scripts published script Id variables params

func (*GetScriptsPublishedScriptIDVariablesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetScriptsPublishedScriptIDVariablesReader

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

GetScriptsPublishedScriptIDVariablesReader is a Reader for the GetScriptsPublishedScriptIDVariables structure.

func (*GetScriptsPublishedScriptIDVariablesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge

type GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsPublishedScriptIDVariablesRequestEntityTooLarge

func NewGetScriptsPublishedScriptIDVariablesRequestEntityTooLarge() *GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge

NewGetScriptsPublishedScriptIDVariablesRequestEntityTooLarge creates a GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge with default headers values

func (*GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge) Error

func (*GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge) GetPayload

func (*GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge) IsClientError

IsClientError returns true when this get scripts published script Id variables request entity too large response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge) IsCode

IsCode returns true when this get scripts published script Id variables request entity too large response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get scripts published script Id variables request entity too large response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge) IsServerError

IsServerError returns true when this get scripts published script Id variables request entity too large response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get scripts published script Id variables request entity too large response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesRequestEntityTooLarge) String

type GetScriptsPublishedScriptIDVariablesRequestTimeout

type GetScriptsPublishedScriptIDVariablesRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDVariablesRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsPublishedScriptIDVariablesRequestTimeout

func NewGetScriptsPublishedScriptIDVariablesRequestTimeout() *GetScriptsPublishedScriptIDVariablesRequestTimeout

NewGetScriptsPublishedScriptIDVariablesRequestTimeout creates a GetScriptsPublishedScriptIDVariablesRequestTimeout with default headers values

func (*GetScriptsPublishedScriptIDVariablesRequestTimeout) Error

func (*GetScriptsPublishedScriptIDVariablesRequestTimeout) GetPayload

func (*GetScriptsPublishedScriptIDVariablesRequestTimeout) IsClientError

IsClientError returns true when this get scripts published script Id variables request timeout response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesRequestTimeout) IsCode

IsCode returns true when this get scripts published script Id variables request timeout response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesRequestTimeout) IsRedirect

IsRedirect returns true when this get scripts published script Id variables request timeout response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesRequestTimeout) IsServerError

IsServerError returns true when this get scripts published script Id variables request timeout response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesRequestTimeout) IsSuccess

IsSuccess returns true when this get scripts published script Id variables request timeout response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesRequestTimeout) String

type GetScriptsPublishedScriptIDVariablesServiceUnavailable

type GetScriptsPublishedScriptIDVariablesServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDVariablesServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsPublishedScriptIDVariablesServiceUnavailable

func NewGetScriptsPublishedScriptIDVariablesServiceUnavailable() *GetScriptsPublishedScriptIDVariablesServiceUnavailable

NewGetScriptsPublishedScriptIDVariablesServiceUnavailable creates a GetScriptsPublishedScriptIDVariablesServiceUnavailable with default headers values

func (*GetScriptsPublishedScriptIDVariablesServiceUnavailable) Error

func (*GetScriptsPublishedScriptIDVariablesServiceUnavailable) GetPayload

func (*GetScriptsPublishedScriptIDVariablesServiceUnavailable) IsClientError

IsClientError returns true when this get scripts published script Id variables service unavailable response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesServiceUnavailable) IsCode

IsCode returns true when this get scripts published script Id variables service unavailable response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesServiceUnavailable) IsRedirect

IsRedirect returns true when this get scripts published script Id variables service unavailable response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesServiceUnavailable) IsServerError

IsServerError returns true when this get scripts published script Id variables service unavailable response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesServiceUnavailable) IsSuccess

IsSuccess returns true when this get scripts published script Id variables service unavailable response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesServiceUnavailable) String

type GetScriptsPublishedScriptIDVariablesTooManyRequests

type GetScriptsPublishedScriptIDVariablesTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDVariablesTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsPublishedScriptIDVariablesTooManyRequests

func NewGetScriptsPublishedScriptIDVariablesTooManyRequests() *GetScriptsPublishedScriptIDVariablesTooManyRequests

NewGetScriptsPublishedScriptIDVariablesTooManyRequests creates a GetScriptsPublishedScriptIDVariablesTooManyRequests with default headers values

func (*GetScriptsPublishedScriptIDVariablesTooManyRequests) Error

func (*GetScriptsPublishedScriptIDVariablesTooManyRequests) GetPayload

func (*GetScriptsPublishedScriptIDVariablesTooManyRequests) IsClientError

IsClientError returns true when this get scripts published script Id variables too many requests response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesTooManyRequests) IsCode

IsCode returns true when this get scripts published script Id variables too many requests response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesTooManyRequests) IsRedirect

IsRedirect returns true when this get scripts published script Id variables too many requests response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesTooManyRequests) IsServerError

IsServerError returns true when this get scripts published script Id variables too many requests response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesTooManyRequests) IsSuccess

IsSuccess returns true when this get scripts published script Id variables too many requests response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesTooManyRequests) String

type GetScriptsPublishedScriptIDVariablesUnauthorized

type GetScriptsPublishedScriptIDVariablesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsPublishedScriptIDVariablesUnauthorized

func NewGetScriptsPublishedScriptIDVariablesUnauthorized() *GetScriptsPublishedScriptIDVariablesUnauthorized

NewGetScriptsPublishedScriptIDVariablesUnauthorized creates a GetScriptsPublishedScriptIDVariablesUnauthorized with default headers values

func (*GetScriptsPublishedScriptIDVariablesUnauthorized) Error

func (*GetScriptsPublishedScriptIDVariablesUnauthorized) GetPayload

func (*GetScriptsPublishedScriptIDVariablesUnauthorized) IsClientError

IsClientError returns true when this get scripts published script Id variables unauthorized response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesUnauthorized) IsCode

IsCode returns true when this get scripts published script Id variables unauthorized response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesUnauthorized) IsRedirect

IsRedirect returns true when this get scripts published script Id variables unauthorized response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesUnauthorized) IsServerError

IsServerError returns true when this get scripts published script Id variables unauthorized response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesUnauthorized) IsSuccess

IsSuccess returns true when this get scripts published script Id variables unauthorized response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesUnauthorized) String

type GetScriptsPublishedScriptIDVariablesUnsupportedMediaType

type GetScriptsPublishedScriptIDVariablesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedScriptIDVariablesUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsPublishedScriptIDVariablesUnsupportedMediaType

func NewGetScriptsPublishedScriptIDVariablesUnsupportedMediaType() *GetScriptsPublishedScriptIDVariablesUnsupportedMediaType

NewGetScriptsPublishedScriptIDVariablesUnsupportedMediaType creates a GetScriptsPublishedScriptIDVariablesUnsupportedMediaType with default headers values

func (*GetScriptsPublishedScriptIDVariablesUnsupportedMediaType) Error

func (*GetScriptsPublishedScriptIDVariablesUnsupportedMediaType) GetPayload

func (*GetScriptsPublishedScriptIDVariablesUnsupportedMediaType) IsClientError

IsClientError returns true when this get scripts published script Id variables unsupported media type response has a 4xx status code

func (*GetScriptsPublishedScriptIDVariablesUnsupportedMediaType) IsCode

IsCode returns true when this get scripts published script Id variables unsupported media type response a status code equal to that given

func (*GetScriptsPublishedScriptIDVariablesUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get scripts published script Id variables unsupported media type response has a 3xx status code

func (*GetScriptsPublishedScriptIDVariablesUnsupportedMediaType) IsServerError

IsServerError returns true when this get scripts published script Id variables unsupported media type response has a 5xx status code

func (*GetScriptsPublishedScriptIDVariablesUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get scripts published script Id variables unsupported media type response has a 2xx status code

func (*GetScriptsPublishedScriptIDVariablesUnsupportedMediaType) String

type GetScriptsPublishedServiceUnavailable

type GetScriptsPublishedServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsPublishedServiceUnavailable

func NewGetScriptsPublishedServiceUnavailable() *GetScriptsPublishedServiceUnavailable

NewGetScriptsPublishedServiceUnavailable creates a GetScriptsPublishedServiceUnavailable with default headers values

func (*GetScriptsPublishedServiceUnavailable) Error

func (*GetScriptsPublishedServiceUnavailable) GetPayload

func (*GetScriptsPublishedServiceUnavailable) IsClientError

func (o *GetScriptsPublishedServiceUnavailable) IsClientError() bool

IsClientError returns true when this get scripts published service unavailable response has a 4xx status code

func (*GetScriptsPublishedServiceUnavailable) IsCode

IsCode returns true when this get scripts published service unavailable response a status code equal to that given

func (*GetScriptsPublishedServiceUnavailable) IsRedirect

IsRedirect returns true when this get scripts published service unavailable response has a 3xx status code

func (*GetScriptsPublishedServiceUnavailable) IsServerError

func (o *GetScriptsPublishedServiceUnavailable) IsServerError() bool

IsServerError returns true when this get scripts published service unavailable response has a 5xx status code

func (*GetScriptsPublishedServiceUnavailable) IsSuccess

IsSuccess returns true when this get scripts published service unavailable response has a 2xx status code

func (*GetScriptsPublishedServiceUnavailable) String

type GetScriptsPublishedTooManyRequests

type GetScriptsPublishedTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsPublishedTooManyRequests

func NewGetScriptsPublishedTooManyRequests() *GetScriptsPublishedTooManyRequests

NewGetScriptsPublishedTooManyRequests creates a GetScriptsPublishedTooManyRequests with default headers values

func (*GetScriptsPublishedTooManyRequests) Error

func (*GetScriptsPublishedTooManyRequests) GetPayload

func (*GetScriptsPublishedTooManyRequests) IsClientError

func (o *GetScriptsPublishedTooManyRequests) IsClientError() bool

IsClientError returns true when this get scripts published too many requests response has a 4xx status code

func (*GetScriptsPublishedTooManyRequests) IsCode

IsCode returns true when this get scripts published too many requests response a status code equal to that given

func (*GetScriptsPublishedTooManyRequests) IsRedirect

func (o *GetScriptsPublishedTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get scripts published too many requests response has a 3xx status code

func (*GetScriptsPublishedTooManyRequests) IsServerError

func (o *GetScriptsPublishedTooManyRequests) IsServerError() bool

IsServerError returns true when this get scripts published too many requests response has a 5xx status code

func (*GetScriptsPublishedTooManyRequests) IsSuccess

IsSuccess returns true when this get scripts published too many requests response has a 2xx status code

func (*GetScriptsPublishedTooManyRequests) String

type GetScriptsPublishedUnauthorized

type GetScriptsPublishedUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsPublishedUnauthorized

func NewGetScriptsPublishedUnauthorized() *GetScriptsPublishedUnauthorized

NewGetScriptsPublishedUnauthorized creates a GetScriptsPublishedUnauthorized with default headers values

func (*GetScriptsPublishedUnauthorized) Error

func (*GetScriptsPublishedUnauthorized) GetPayload

func (*GetScriptsPublishedUnauthorized) IsClientError

func (o *GetScriptsPublishedUnauthorized) IsClientError() bool

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

func (*GetScriptsPublishedUnauthorized) IsCode

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

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

func (*GetScriptsPublishedUnauthorized) IsRedirect

func (o *GetScriptsPublishedUnauthorized) IsRedirect() bool

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

func (*GetScriptsPublishedUnauthorized) IsServerError

func (o *GetScriptsPublishedUnauthorized) IsServerError() bool

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

func (*GetScriptsPublishedUnauthorized) IsSuccess

func (o *GetScriptsPublishedUnauthorized) IsSuccess() bool

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

func (*GetScriptsPublishedUnauthorized) String

type GetScriptsPublishedUnsupportedMediaType

type GetScriptsPublishedUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsPublishedUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsPublishedUnsupportedMediaType

func NewGetScriptsPublishedUnsupportedMediaType() *GetScriptsPublishedUnsupportedMediaType

NewGetScriptsPublishedUnsupportedMediaType creates a GetScriptsPublishedUnsupportedMediaType with default headers values

func (*GetScriptsPublishedUnsupportedMediaType) Error

func (*GetScriptsPublishedUnsupportedMediaType) GetPayload

func (*GetScriptsPublishedUnsupportedMediaType) IsClientError

func (o *GetScriptsPublishedUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get scripts published unsupported media type response has a 4xx status code

func (*GetScriptsPublishedUnsupportedMediaType) IsCode

IsCode returns true when this get scripts published unsupported media type response a status code equal to that given

func (*GetScriptsPublishedUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get scripts published unsupported media type response has a 3xx status code

func (*GetScriptsPublishedUnsupportedMediaType) IsServerError

func (o *GetScriptsPublishedUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get scripts published unsupported media type response has a 5xx status code

func (*GetScriptsPublishedUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get scripts published unsupported media type response has a 2xx status code

func (*GetScriptsPublishedUnsupportedMediaType) String

type GetScriptsReader

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

GetScriptsReader is a Reader for the GetScripts structure.

func (*GetScriptsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsRequestEntityTooLarge

type GetScriptsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsRequestEntityTooLarge

func NewGetScriptsRequestEntityTooLarge() *GetScriptsRequestEntityTooLarge

NewGetScriptsRequestEntityTooLarge creates a GetScriptsRequestEntityTooLarge with default headers values

func (*GetScriptsRequestEntityTooLarge) Error

func (*GetScriptsRequestEntityTooLarge) GetPayload

func (*GetScriptsRequestEntityTooLarge) IsClientError

func (o *GetScriptsRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this get scripts request entity too large response has a 4xx status code

func (*GetScriptsRequestEntityTooLarge) IsCode

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

IsCode returns true when this get scripts request entity too large response a status code equal to that given

func (*GetScriptsRequestEntityTooLarge) IsRedirect

func (o *GetScriptsRequestEntityTooLarge) IsRedirect() bool

IsRedirect returns true when this get scripts request entity too large response has a 3xx status code

func (*GetScriptsRequestEntityTooLarge) IsServerError

func (o *GetScriptsRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this get scripts request entity too large response has a 5xx status code

func (*GetScriptsRequestEntityTooLarge) IsSuccess

func (o *GetScriptsRequestEntityTooLarge) IsSuccess() bool

IsSuccess returns true when this get scripts request entity too large response has a 2xx status code

func (*GetScriptsRequestEntityTooLarge) String

type GetScriptsRequestTimeout

type GetScriptsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsRequestTimeout

func NewGetScriptsRequestTimeout() *GetScriptsRequestTimeout

NewGetScriptsRequestTimeout creates a GetScriptsRequestTimeout with default headers values

func (*GetScriptsRequestTimeout) Error

func (o *GetScriptsRequestTimeout) Error() string

func (*GetScriptsRequestTimeout) GetPayload

func (o *GetScriptsRequestTimeout) GetPayload() *models.ErrorBody

func (*GetScriptsRequestTimeout) IsClientError

func (o *GetScriptsRequestTimeout) IsClientError() bool

IsClientError returns true when this get scripts request timeout response has a 4xx status code

func (*GetScriptsRequestTimeout) IsCode

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

IsCode returns true when this get scripts request timeout response a status code equal to that given

func (*GetScriptsRequestTimeout) IsRedirect

func (o *GetScriptsRequestTimeout) IsRedirect() bool

IsRedirect returns true when this get scripts request timeout response has a 3xx status code

func (*GetScriptsRequestTimeout) IsServerError

func (o *GetScriptsRequestTimeout) IsServerError() bool

IsServerError returns true when this get scripts request timeout response has a 5xx status code

func (*GetScriptsRequestTimeout) IsSuccess

func (o *GetScriptsRequestTimeout) IsSuccess() bool

IsSuccess returns true when this get scripts request timeout response has a 2xx status code

func (*GetScriptsRequestTimeout) String

func (o *GetScriptsRequestTimeout) String() string

type GetScriptsServiceUnavailable

type GetScriptsServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsServiceUnavailable

func NewGetScriptsServiceUnavailable() *GetScriptsServiceUnavailable

NewGetScriptsServiceUnavailable creates a GetScriptsServiceUnavailable with default headers values

func (*GetScriptsServiceUnavailable) Error

func (*GetScriptsServiceUnavailable) GetPayload

func (*GetScriptsServiceUnavailable) IsClientError

func (o *GetScriptsServiceUnavailable) IsClientError() bool

IsClientError returns true when this get scripts service unavailable response has a 4xx status code

func (*GetScriptsServiceUnavailable) IsCode

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

IsCode returns true when this get scripts service unavailable response a status code equal to that given

func (*GetScriptsServiceUnavailable) IsRedirect

func (o *GetScriptsServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this get scripts service unavailable response has a 3xx status code

func (*GetScriptsServiceUnavailable) IsServerError

func (o *GetScriptsServiceUnavailable) IsServerError() bool

IsServerError returns true when this get scripts service unavailable response has a 5xx status code

func (*GetScriptsServiceUnavailable) IsSuccess

func (o *GetScriptsServiceUnavailable) IsSuccess() bool

IsSuccess returns true when this get scripts service unavailable response has a 2xx status code

func (*GetScriptsServiceUnavailable) String

type GetScriptsTooManyRequests

type GetScriptsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsTooManyRequests

func NewGetScriptsTooManyRequests() *GetScriptsTooManyRequests

NewGetScriptsTooManyRequests creates a GetScriptsTooManyRequests with default headers values

func (*GetScriptsTooManyRequests) Error

func (o *GetScriptsTooManyRequests) Error() string

func (*GetScriptsTooManyRequests) GetPayload

func (o *GetScriptsTooManyRequests) GetPayload() *models.ErrorBody

func (*GetScriptsTooManyRequests) IsClientError

func (o *GetScriptsTooManyRequests) IsClientError() bool

IsClientError returns true when this get scripts too many requests response has a 4xx status code

func (*GetScriptsTooManyRequests) IsCode

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

IsCode returns true when this get scripts too many requests response a status code equal to that given

func (*GetScriptsTooManyRequests) IsRedirect

func (o *GetScriptsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this get scripts too many requests response has a 3xx status code

func (*GetScriptsTooManyRequests) IsServerError

func (o *GetScriptsTooManyRequests) IsServerError() bool

IsServerError returns true when this get scripts too many requests response has a 5xx status code

func (*GetScriptsTooManyRequests) IsSuccess

func (o *GetScriptsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this get scripts too many requests response has a 2xx status code

func (*GetScriptsTooManyRequests) String

func (o *GetScriptsTooManyRequests) String() string

type GetScriptsUnauthorized

type GetScriptsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsUnauthorized

func NewGetScriptsUnauthorized() *GetScriptsUnauthorized

NewGetScriptsUnauthorized creates a GetScriptsUnauthorized with default headers values

func (*GetScriptsUnauthorized) Error

func (o *GetScriptsUnauthorized) Error() string

func (*GetScriptsUnauthorized) GetPayload

func (o *GetScriptsUnauthorized) GetPayload() *models.ErrorBody

func (*GetScriptsUnauthorized) IsClientError

func (o *GetScriptsUnauthorized) IsClientError() bool

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

func (*GetScriptsUnauthorized) IsCode

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

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

func (*GetScriptsUnauthorized) IsRedirect

func (o *GetScriptsUnauthorized) IsRedirect() bool

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

func (*GetScriptsUnauthorized) IsServerError

func (o *GetScriptsUnauthorized) IsServerError() bool

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

func (*GetScriptsUnauthorized) IsSuccess

func (o *GetScriptsUnauthorized) IsSuccess() bool

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

func (*GetScriptsUnauthorized) String

func (o *GetScriptsUnauthorized) String() string

type GetScriptsUnsupportedMediaType

type GetScriptsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsUnsupportedMediaType

func NewGetScriptsUnsupportedMediaType() *GetScriptsUnsupportedMediaType

NewGetScriptsUnsupportedMediaType creates a GetScriptsUnsupportedMediaType with default headers values

func (*GetScriptsUnsupportedMediaType) Error

func (*GetScriptsUnsupportedMediaType) GetPayload

func (*GetScriptsUnsupportedMediaType) IsClientError

func (o *GetScriptsUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this get scripts unsupported media type response has a 4xx status code

func (*GetScriptsUnsupportedMediaType) IsCode

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

IsCode returns true when this get scripts unsupported media type response a status code equal to that given

func (*GetScriptsUnsupportedMediaType) IsRedirect

func (o *GetScriptsUnsupportedMediaType) IsRedirect() bool

IsRedirect returns true when this get scripts unsupported media type response has a 3xx status code

func (*GetScriptsUnsupportedMediaType) IsServerError

func (o *GetScriptsUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this get scripts unsupported media type response has a 5xx status code

func (*GetScriptsUnsupportedMediaType) IsSuccess

func (o *GetScriptsUnsupportedMediaType) IsSuccess() bool

IsSuccess returns true when this get scripts unsupported media type response has a 2xx status code

func (*GetScriptsUnsupportedMediaType) String

type GetScriptsUploadStatusBadRequest

type GetScriptsUploadStatusBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetScriptsUploadStatusBadRequest

func NewGetScriptsUploadStatusBadRequest() *GetScriptsUploadStatusBadRequest

NewGetScriptsUploadStatusBadRequest creates a GetScriptsUploadStatusBadRequest with default headers values

func (*GetScriptsUploadStatusBadRequest) Error

func (*GetScriptsUploadStatusBadRequest) GetPayload

func (*GetScriptsUploadStatusBadRequest) IsClientError

func (o *GetScriptsUploadStatusBadRequest) IsClientError() bool

IsClientError returns true when this get scripts upload status bad request response has a 4xx status code

func (*GetScriptsUploadStatusBadRequest) IsCode

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

IsCode returns true when this get scripts upload status bad request response a status code equal to that given

func (*GetScriptsUploadStatusBadRequest) IsRedirect

func (o *GetScriptsUploadStatusBadRequest) IsRedirect() bool

IsRedirect returns true when this get scripts upload status bad request response has a 3xx status code

func (*GetScriptsUploadStatusBadRequest) IsServerError

func (o *GetScriptsUploadStatusBadRequest) IsServerError() bool

IsServerError returns true when this get scripts upload status bad request response has a 5xx status code

func (*GetScriptsUploadStatusBadRequest) IsSuccess

func (o *GetScriptsUploadStatusBadRequest) IsSuccess() bool

IsSuccess returns true when this get scripts upload status bad request response has a 2xx status code

func (*GetScriptsUploadStatusBadRequest) String

type GetScriptsUploadStatusForbidden

type GetScriptsUploadStatusForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetScriptsUploadStatusForbidden

func NewGetScriptsUploadStatusForbidden() *GetScriptsUploadStatusForbidden

NewGetScriptsUploadStatusForbidden creates a GetScriptsUploadStatusForbidden with default headers values

func (*GetScriptsUploadStatusForbidden) Error

func (*GetScriptsUploadStatusForbidden) GetPayload

func (*GetScriptsUploadStatusForbidden) IsClientError

func (o *GetScriptsUploadStatusForbidden) IsClientError() bool

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

func (*GetScriptsUploadStatusForbidden) IsCode

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

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

func (*GetScriptsUploadStatusForbidden) IsRedirect

func (o *GetScriptsUploadStatusForbidden) IsRedirect() bool

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

func (*GetScriptsUploadStatusForbidden) IsServerError

func (o *GetScriptsUploadStatusForbidden) IsServerError() bool

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

func (*GetScriptsUploadStatusForbidden) IsSuccess

func (o *GetScriptsUploadStatusForbidden) IsSuccess() bool

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

func (*GetScriptsUploadStatusForbidden) String

type GetScriptsUploadStatusGatewayTimeout

type GetScriptsUploadStatusGatewayTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsUploadStatusGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewGetScriptsUploadStatusGatewayTimeout

func NewGetScriptsUploadStatusGatewayTimeout() *GetScriptsUploadStatusGatewayTimeout

NewGetScriptsUploadStatusGatewayTimeout creates a GetScriptsUploadStatusGatewayTimeout with default headers values

func (*GetScriptsUploadStatusGatewayTimeout) Error

func (*GetScriptsUploadStatusGatewayTimeout) GetPayload

func (*GetScriptsUploadStatusGatewayTimeout) IsClientError

func (o *GetScriptsUploadStatusGatewayTimeout) IsClientError() bool

IsClientError returns true when this get scripts upload status gateway timeout response has a 4xx status code

func (*GetScriptsUploadStatusGatewayTimeout) IsCode

IsCode returns true when this get scripts upload status gateway timeout response a status code equal to that given

func (*GetScriptsUploadStatusGatewayTimeout) IsRedirect

IsRedirect returns true when this get scripts upload status gateway timeout response has a 3xx status code

func (*GetScriptsUploadStatusGatewayTimeout) IsServerError

func (o *GetScriptsUploadStatusGatewayTimeout) IsServerError() bool

IsServerError returns true when this get scripts upload status gateway timeout response has a 5xx status code

func (*GetScriptsUploadStatusGatewayTimeout) IsSuccess

IsSuccess returns true when this get scripts upload status gateway timeout response has a 2xx status code

func (*GetScriptsUploadStatusGatewayTimeout) String

type GetScriptsUploadStatusInternalServerError

type GetScriptsUploadStatusInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetScriptsUploadStatusInternalServerError

func NewGetScriptsUploadStatusInternalServerError() *GetScriptsUploadStatusInternalServerError

NewGetScriptsUploadStatusInternalServerError creates a GetScriptsUploadStatusInternalServerError with default headers values

func (*GetScriptsUploadStatusInternalServerError) Error

func (*GetScriptsUploadStatusInternalServerError) GetPayload

func (*GetScriptsUploadStatusInternalServerError) IsClientError

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

func (*GetScriptsUploadStatusInternalServerError) IsCode

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

func (*GetScriptsUploadStatusInternalServerError) IsRedirect

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

func (*GetScriptsUploadStatusInternalServerError) IsServerError

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

func (*GetScriptsUploadStatusInternalServerError) IsSuccess

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

func (*GetScriptsUploadStatusInternalServerError) String

type GetScriptsUploadStatusNotFound

type GetScriptsUploadStatusNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetScriptsUploadStatusNotFound

func NewGetScriptsUploadStatusNotFound() *GetScriptsUploadStatusNotFound

NewGetScriptsUploadStatusNotFound creates a GetScriptsUploadStatusNotFound with default headers values

func (*GetScriptsUploadStatusNotFound) Error

func (*GetScriptsUploadStatusNotFound) GetPayload

func (*GetScriptsUploadStatusNotFound) IsClientError

func (o *GetScriptsUploadStatusNotFound) IsClientError() bool

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

func (*GetScriptsUploadStatusNotFound) IsCode

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

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

func (*GetScriptsUploadStatusNotFound) IsRedirect

func (o *GetScriptsUploadStatusNotFound) IsRedirect() bool

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

func (*GetScriptsUploadStatusNotFound) IsServerError

func (o *GetScriptsUploadStatusNotFound) IsServerError() bool

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

func (*GetScriptsUploadStatusNotFound) IsSuccess

func (o *GetScriptsUploadStatusNotFound) IsSuccess() bool

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

func (*GetScriptsUploadStatusNotFound) String

type GetScriptsUploadStatusOK

type GetScriptsUploadStatusOK struct {
	Payload *models.ImportScriptStatusResponse
}

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

successful operation

func NewGetScriptsUploadStatusOK

func NewGetScriptsUploadStatusOK() *GetScriptsUploadStatusOK

NewGetScriptsUploadStatusOK creates a GetScriptsUploadStatusOK with default headers values

func (*GetScriptsUploadStatusOK) Error

func (o *GetScriptsUploadStatusOK) Error() string

func (*GetScriptsUploadStatusOK) GetPayload

func (*GetScriptsUploadStatusOK) IsClientError

func (o *GetScriptsUploadStatusOK) IsClientError() bool

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

func (*GetScriptsUploadStatusOK) IsCode

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

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

func (*GetScriptsUploadStatusOK) IsRedirect

func (o *GetScriptsUploadStatusOK) IsRedirect() bool

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

func (*GetScriptsUploadStatusOK) IsServerError

func (o *GetScriptsUploadStatusOK) IsServerError() bool

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

func (*GetScriptsUploadStatusOK) IsSuccess

func (o *GetScriptsUploadStatusOK) IsSuccess() bool

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

func (*GetScriptsUploadStatusOK) String

func (o *GetScriptsUploadStatusOK) String() string

type GetScriptsUploadStatusParams

type GetScriptsUploadStatusParams struct {

	/* LongPoll.

	   Enable longPolling endpoint
	*/
	LongPoll *bool

	/* UploadID.

	   Upload ID
	*/
	UploadID string

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

GetScriptsUploadStatusParams contains all the parameters to send to the API endpoint

for the get scripts upload status operation.

Typically these are written to a http.Request.

func NewGetScriptsUploadStatusParams

func NewGetScriptsUploadStatusParams() *GetScriptsUploadStatusParams

NewGetScriptsUploadStatusParams creates a new GetScriptsUploadStatusParams 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 NewGetScriptsUploadStatusParamsWithContext

func NewGetScriptsUploadStatusParamsWithContext(ctx context.Context) *GetScriptsUploadStatusParams

NewGetScriptsUploadStatusParamsWithContext creates a new GetScriptsUploadStatusParams object with the ability to set a context for a request.

func NewGetScriptsUploadStatusParamsWithHTTPClient

func NewGetScriptsUploadStatusParamsWithHTTPClient(client *http.Client) *GetScriptsUploadStatusParams

NewGetScriptsUploadStatusParamsWithHTTPClient creates a new GetScriptsUploadStatusParams object with the ability to set a custom HTTPClient for a request.

func NewGetScriptsUploadStatusParamsWithTimeout

func NewGetScriptsUploadStatusParamsWithTimeout(timeout time.Duration) *GetScriptsUploadStatusParams

NewGetScriptsUploadStatusParamsWithTimeout creates a new GetScriptsUploadStatusParams object with the ability to set a timeout on a request.

func (*GetScriptsUploadStatusParams) SetContext

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

SetContext adds the context to the get scripts upload status params

func (*GetScriptsUploadStatusParams) SetDefaults

func (o *GetScriptsUploadStatusParams) SetDefaults()

SetDefaults hydrates default values in the get scripts upload status params (not the query body).

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

func (*GetScriptsUploadStatusParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get scripts upload status params

func (*GetScriptsUploadStatusParams) SetLongPoll

func (o *GetScriptsUploadStatusParams) SetLongPoll(longPoll *bool)

SetLongPoll adds the longPoll to the get scripts upload status params

func (*GetScriptsUploadStatusParams) SetTimeout

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

SetTimeout adds the timeout to the get scripts upload status params

func (*GetScriptsUploadStatusParams) SetUploadID

func (o *GetScriptsUploadStatusParams) SetUploadID(uploadID string)

SetUploadID adds the uploadId to the get scripts upload status params

func (*GetScriptsUploadStatusParams) WithContext

WithContext adds the context to the get scripts upload status params

func (*GetScriptsUploadStatusParams) WithDefaults

WithDefaults hydrates default values in the get scripts upload status params (not the query body).

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

func (*GetScriptsUploadStatusParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get scripts upload status params

func (*GetScriptsUploadStatusParams) WithLongPoll

WithLongPoll adds the longPoll to the get scripts upload status params

func (*GetScriptsUploadStatusParams) WithTimeout

WithTimeout adds the timeout to the get scripts upload status params

func (*GetScriptsUploadStatusParams) WithUploadID

WithUploadID adds the uploadID to the get scripts upload status params

func (*GetScriptsUploadStatusParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetScriptsUploadStatusReader

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

GetScriptsUploadStatusReader is a Reader for the GetScriptsUploadStatus structure.

func (*GetScriptsUploadStatusReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetScriptsUploadStatusRequestEntityTooLarge

type GetScriptsUploadStatusRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetScriptsUploadStatusRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetScriptsUploadStatusRequestEntityTooLarge

func NewGetScriptsUploadStatusRequestEntityTooLarge() *GetScriptsUploadStatusRequestEntityTooLarge

NewGetScriptsUploadStatusRequestEntityTooLarge creates a GetScriptsUploadStatusRequestEntityTooLarge with default headers values

func (*GetScriptsUploadStatusRequestEntityTooLarge) Error

func (*GetScriptsUploadStatusRequestEntityTooLarge) GetPayload

func (*GetScriptsUploadStatusRequestEntityTooLarge) IsClientError

IsClientError returns true when this get scripts upload status request entity too large response has a 4xx status code

func (*GetScriptsUploadStatusRequestEntityTooLarge) IsCode

IsCode returns true when this get scripts upload status request entity too large response a status code equal to that given

func (*GetScriptsUploadStatusRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get scripts upload status request entity too large response has a 3xx status code

func (*GetScriptsUploadStatusRequestEntityTooLarge) IsServerError

IsServerError returns true when this get scripts upload status request entity too large response has a 5xx status code

func (*GetScriptsUploadStatusRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get scripts upload status request entity too large response has a 2xx status code

func (*GetScriptsUploadStatusRequestEntityTooLarge) String

type GetScriptsUploadStatusRequestTimeout

type GetScriptsUploadStatusRequestTimeout struct {
	Payload *models.ErrorBody
}

GetScriptsUploadStatusRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetScriptsUploadStatusRequestTimeout

func NewGetScriptsUploadStatusRequestTimeout() *GetScriptsUploadStatusRequestTimeout

NewGetScriptsUploadStatusRequestTimeout creates a GetScriptsUploadStatusRequestTimeout with default headers values

func (*GetScriptsUploadStatusRequestTimeout) Error

func (*GetScriptsUploadStatusRequestTimeout) GetPayload

func (*GetScriptsUploadStatusRequestTimeout) IsClientError

func (o *GetScriptsUploadStatusRequestTimeout) IsClientError() bool

IsClientError returns true when this get scripts upload status request timeout response has a 4xx status code

func (*GetScriptsUploadStatusRequestTimeout) IsCode

IsCode returns true when this get scripts upload status request timeout response a status code equal to that given

func (*GetScriptsUploadStatusRequestTimeout) IsRedirect

IsRedirect returns true when this get scripts upload status request timeout response has a 3xx status code

func (*GetScriptsUploadStatusRequestTimeout) IsServerError

func (o *GetScriptsUploadStatusRequestTimeout) IsServerError() bool

IsServerError returns true when this get scripts upload status request timeout response has a 5xx status code

func (*GetScriptsUploadStatusRequestTimeout) IsSuccess

IsSuccess returns true when this get scripts upload status request timeout response has a 2xx status code

func (*GetScriptsUploadStatusRequestTimeout) String

type GetScriptsUploadStatusServiceUnavailable

type GetScriptsUploadStatusServiceUnavailable struct {
	Payload *models.ErrorBody
}

GetScriptsUploadStatusServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetScriptsUploadStatusServiceUnavailable

func NewGetScriptsUploadStatusServiceUnavailable() *GetScriptsUploadStatusServiceUnavailable

NewGetScriptsUploadStatusServiceUnavailable creates a GetScriptsUploadStatusServiceUnavailable with default headers values

func (*GetScriptsUploadStatusServiceUnavailable) Error

func (*GetScriptsUploadStatusServiceUnavailable) GetPayload

func (*GetScriptsUploadStatusServiceUnavailable) IsClientError

IsClientError returns true when this get scripts upload status service unavailable response has a 4xx status code

func (*GetScriptsUploadStatusServiceUnavailable) IsCode

IsCode returns true when this get scripts upload status service unavailable response a status code equal to that given

func (*GetScriptsUploadStatusServiceUnavailable) IsRedirect

IsRedirect returns true when this get scripts upload status service unavailable response has a 3xx status code

func (*GetScriptsUploadStatusServiceUnavailable) IsServerError

IsServerError returns true when this get scripts upload status service unavailable response has a 5xx status code

func (*GetScriptsUploadStatusServiceUnavailable) IsSuccess

IsSuccess returns true when this get scripts upload status service unavailable response has a 2xx status code

func (*GetScriptsUploadStatusServiceUnavailable) String

type GetScriptsUploadStatusTooManyRequests

type GetScriptsUploadStatusTooManyRequests struct {
	Payload *models.ErrorBody
}

GetScriptsUploadStatusTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetScriptsUploadStatusTooManyRequests

func NewGetScriptsUploadStatusTooManyRequests() *GetScriptsUploadStatusTooManyRequests

NewGetScriptsUploadStatusTooManyRequests creates a GetScriptsUploadStatusTooManyRequests with default headers values

func (*GetScriptsUploadStatusTooManyRequests) Error

func (*GetScriptsUploadStatusTooManyRequests) GetPayload

func (*GetScriptsUploadStatusTooManyRequests) IsClientError

func (o *GetScriptsUploadStatusTooManyRequests) IsClientError() bool

IsClientError returns true when this get scripts upload status too many requests response has a 4xx status code

func (*GetScriptsUploadStatusTooManyRequests) IsCode

IsCode returns true when this get scripts upload status too many requests response a status code equal to that given

func (*GetScriptsUploadStatusTooManyRequests) IsRedirect

IsRedirect returns true when this get scripts upload status too many requests response has a 3xx status code

func (*GetScriptsUploadStatusTooManyRequests) IsServerError

func (o *GetScriptsUploadStatusTooManyRequests) IsServerError() bool

IsServerError returns true when this get scripts upload status too many requests response has a 5xx status code

func (*GetScriptsUploadStatusTooManyRequests) IsSuccess

IsSuccess returns true when this get scripts upload status too many requests response has a 2xx status code

func (*GetScriptsUploadStatusTooManyRequests) String

type GetScriptsUploadStatusUnauthorized

type GetScriptsUploadStatusUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetScriptsUploadStatusUnauthorized

func NewGetScriptsUploadStatusUnauthorized() *GetScriptsUploadStatusUnauthorized

NewGetScriptsUploadStatusUnauthorized creates a GetScriptsUploadStatusUnauthorized with default headers values

func (*GetScriptsUploadStatusUnauthorized) Error

func (*GetScriptsUploadStatusUnauthorized) GetPayload

func (*GetScriptsUploadStatusUnauthorized) IsClientError

func (o *GetScriptsUploadStatusUnauthorized) IsClientError() bool

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

func (*GetScriptsUploadStatusUnauthorized) IsCode

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

func (*GetScriptsUploadStatusUnauthorized) IsRedirect

func (o *GetScriptsUploadStatusUnauthorized) IsRedirect() bool

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

func (*GetScriptsUploadStatusUnauthorized) IsServerError

func (o *GetScriptsUploadStatusUnauthorized) IsServerError() bool

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

func (*GetScriptsUploadStatusUnauthorized) IsSuccess

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

func (*GetScriptsUploadStatusUnauthorized) String

type GetScriptsUploadStatusUnsupportedMediaType

type GetScriptsUploadStatusUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetScriptsUploadStatusUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetScriptsUploadStatusUnsupportedMediaType

func NewGetScriptsUploadStatusUnsupportedMediaType() *GetScriptsUploadStatusUnsupportedMediaType

NewGetScriptsUploadStatusUnsupportedMediaType creates a GetScriptsUploadStatusUnsupportedMediaType with default headers values

func (*GetScriptsUploadStatusUnsupportedMediaType) Error

func (*GetScriptsUploadStatusUnsupportedMediaType) GetPayload

func (*GetScriptsUploadStatusUnsupportedMediaType) IsClientError

IsClientError returns true when this get scripts upload status unsupported media type response has a 4xx status code

func (*GetScriptsUploadStatusUnsupportedMediaType) IsCode

IsCode returns true when this get scripts upload status unsupported media type response a status code equal to that given

func (*GetScriptsUploadStatusUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get scripts upload status unsupported media type response has a 3xx status code

func (*GetScriptsUploadStatusUnsupportedMediaType) IsServerError

IsServerError returns true when this get scripts upload status unsupported media type response has a 5xx status code

func (*GetScriptsUploadStatusUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get scripts upload status unsupported media type response has a 2xx status code

func (*GetScriptsUploadStatusUnsupportedMediaType) String

type PostScriptExportBadRequest

type PostScriptExportBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostScriptExportBadRequest

func NewPostScriptExportBadRequest() *PostScriptExportBadRequest

NewPostScriptExportBadRequest creates a PostScriptExportBadRequest with default headers values

func (*PostScriptExportBadRequest) Error

func (*PostScriptExportBadRequest) GetPayload

func (o *PostScriptExportBadRequest) GetPayload() *models.ErrorBody

func (*PostScriptExportBadRequest) IsClientError

func (o *PostScriptExportBadRequest) IsClientError() bool

IsClientError returns true when this post script export bad request response has a 4xx status code

func (*PostScriptExportBadRequest) IsCode

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

IsCode returns true when this post script export bad request response a status code equal to that given

func (*PostScriptExportBadRequest) IsRedirect

func (o *PostScriptExportBadRequest) IsRedirect() bool

IsRedirect returns true when this post script export bad request response has a 3xx status code

func (*PostScriptExportBadRequest) IsServerError

func (o *PostScriptExportBadRequest) IsServerError() bool

IsServerError returns true when this post script export bad request response has a 5xx status code

func (*PostScriptExportBadRequest) IsSuccess

func (o *PostScriptExportBadRequest) IsSuccess() bool

IsSuccess returns true when this post script export bad request response has a 2xx status code

func (*PostScriptExportBadRequest) String

func (o *PostScriptExportBadRequest) String() string

type PostScriptExportForbidden

type PostScriptExportForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostScriptExportForbidden

func NewPostScriptExportForbidden() *PostScriptExportForbidden

NewPostScriptExportForbidden creates a PostScriptExportForbidden with default headers values

func (*PostScriptExportForbidden) Error

func (o *PostScriptExportForbidden) Error() string

func (*PostScriptExportForbidden) GetPayload

func (o *PostScriptExportForbidden) GetPayload() *models.ErrorBody

func (*PostScriptExportForbidden) IsClientError

func (o *PostScriptExportForbidden) IsClientError() bool

IsClientError returns true when this post script export forbidden response has a 4xx status code

func (*PostScriptExportForbidden) IsCode

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

IsCode returns true when this post script export forbidden response a status code equal to that given

func (*PostScriptExportForbidden) IsRedirect

func (o *PostScriptExportForbidden) IsRedirect() bool

IsRedirect returns true when this post script export forbidden response has a 3xx status code

func (*PostScriptExportForbidden) IsServerError

func (o *PostScriptExportForbidden) IsServerError() bool

IsServerError returns true when this post script export forbidden response has a 5xx status code

func (*PostScriptExportForbidden) IsSuccess

func (o *PostScriptExportForbidden) IsSuccess() bool

IsSuccess returns true when this post script export forbidden response has a 2xx status code

func (*PostScriptExportForbidden) String

func (o *PostScriptExportForbidden) String() string

type PostScriptExportGatewayTimeout

type PostScriptExportGatewayTimeout struct {
	Payload *models.ErrorBody
}

PostScriptExportGatewayTimeout describes a response with status code 504, with default header values.

The request timed out.

func NewPostScriptExportGatewayTimeout

func NewPostScriptExportGatewayTimeout() *PostScriptExportGatewayTimeout

NewPostScriptExportGatewayTimeout creates a PostScriptExportGatewayTimeout with default headers values

func (*PostScriptExportGatewayTimeout) Error

func (*PostScriptExportGatewayTimeout) GetPayload

func (*PostScriptExportGatewayTimeout) IsClientError

func (o *PostScriptExportGatewayTimeout) IsClientError() bool

IsClientError returns true when this post script export gateway timeout response has a 4xx status code

func (*PostScriptExportGatewayTimeout) IsCode

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

IsCode returns true when this post script export gateway timeout response a status code equal to that given

func (*PostScriptExportGatewayTimeout) IsRedirect

func (o *PostScriptExportGatewayTimeout) IsRedirect() bool

IsRedirect returns true when this post script export gateway timeout response has a 3xx status code

func (*PostScriptExportGatewayTimeout) IsServerError

func (o *PostScriptExportGatewayTimeout) IsServerError() bool

IsServerError returns true when this post script export gateway timeout response has a 5xx status code

func (*PostScriptExportGatewayTimeout) IsSuccess

func (o *PostScriptExportGatewayTimeout) IsSuccess() bool

IsSuccess returns true when this post script export gateway timeout response has a 2xx status code

func (*PostScriptExportGatewayTimeout) String

type PostScriptExportInternalServerError

type PostScriptExportInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostScriptExportInternalServerError

func NewPostScriptExportInternalServerError() *PostScriptExportInternalServerError

NewPostScriptExportInternalServerError creates a PostScriptExportInternalServerError with default headers values

func (*PostScriptExportInternalServerError) Error

func (*PostScriptExportInternalServerError) GetPayload

func (*PostScriptExportInternalServerError) IsClientError

func (o *PostScriptExportInternalServerError) IsClientError() bool

IsClientError returns true when this post script export internal server error response has a 4xx status code

func (*PostScriptExportInternalServerError) IsCode

IsCode returns true when this post script export internal server error response a status code equal to that given

func (*PostScriptExportInternalServerError) IsRedirect

func (o *PostScriptExportInternalServerError) IsRedirect() bool

IsRedirect returns true when this post script export internal server error response has a 3xx status code

func (*PostScriptExportInternalServerError) IsServerError

func (o *PostScriptExportInternalServerError) IsServerError() bool

IsServerError returns true when this post script export internal server error response has a 5xx status code

func (*PostScriptExportInternalServerError) IsSuccess

IsSuccess returns true when this post script export internal server error response has a 2xx status code

func (*PostScriptExportInternalServerError) String

type PostScriptExportNotFound

type PostScriptExportNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostScriptExportNotFound

func NewPostScriptExportNotFound() *PostScriptExportNotFound

NewPostScriptExportNotFound creates a PostScriptExportNotFound with default headers values

func (*PostScriptExportNotFound) Error

func (o *PostScriptExportNotFound) Error() string

func (*PostScriptExportNotFound) GetPayload

func (o *PostScriptExportNotFound) GetPayload() *models.ErrorBody

func (*PostScriptExportNotFound) IsClientError

func (o *PostScriptExportNotFound) IsClientError() bool

IsClientError returns true when this post script export not found response has a 4xx status code

func (*PostScriptExportNotFound) IsCode

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

IsCode returns true when this post script export not found response a status code equal to that given

func (*PostScriptExportNotFound) IsRedirect

func (o *PostScriptExportNotFound) IsRedirect() bool

IsRedirect returns true when this post script export not found response has a 3xx status code

func (*PostScriptExportNotFound) IsServerError

func (o *PostScriptExportNotFound) IsServerError() bool

IsServerError returns true when this post script export not found response has a 5xx status code

func (*PostScriptExportNotFound) IsSuccess

func (o *PostScriptExportNotFound) IsSuccess() bool

IsSuccess returns true when this post script export not found response has a 2xx status code

func (*PostScriptExportNotFound) String

func (o *PostScriptExportNotFound) String() string

type PostScriptExportOK

type PostScriptExportOK struct {
	Payload *models.ExportScriptResponse
}

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

successful operation

func NewPostScriptExportOK

func NewPostScriptExportOK() *PostScriptExportOK

NewPostScriptExportOK creates a PostScriptExportOK with default headers values

func (*PostScriptExportOK) Error

func (o *PostScriptExportOK) Error() string

func (*PostScriptExportOK) GetPayload

func (*PostScriptExportOK) IsClientError

func (o *PostScriptExportOK) IsClientError() bool

IsClientError returns true when this post script export o k response has a 4xx status code

func (*PostScriptExportOK) IsCode

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

IsCode returns true when this post script export o k response a status code equal to that given

func (*PostScriptExportOK) IsRedirect

func (o *PostScriptExportOK) IsRedirect() bool

IsRedirect returns true when this post script export o k response has a 3xx status code

func (*PostScriptExportOK) IsServerError

func (o *PostScriptExportOK) IsServerError() bool

IsServerError returns true when this post script export o k response has a 5xx status code

func (*PostScriptExportOK) IsSuccess

func (o *PostScriptExportOK) IsSuccess() bool

IsSuccess returns true when this post script export o k response has a 2xx status code

func (*PostScriptExportOK) String

func (o *PostScriptExportOK) String() string

type PostScriptExportParams

type PostScriptExportParams struct {

	// Body.
	Body *models.ExportScriptRequest

	/* ScriptID.

	   Script ID
	*/
	ScriptID string

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

PostScriptExportParams contains all the parameters to send to the API endpoint

for the post script export operation.

Typically these are written to a http.Request.

func NewPostScriptExportParams

func NewPostScriptExportParams() *PostScriptExportParams

NewPostScriptExportParams creates a new PostScriptExportParams 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 NewPostScriptExportParamsWithContext

func NewPostScriptExportParamsWithContext(ctx context.Context) *PostScriptExportParams

NewPostScriptExportParamsWithContext creates a new PostScriptExportParams object with the ability to set a context for a request.

func NewPostScriptExportParamsWithHTTPClient

func NewPostScriptExportParamsWithHTTPClient(client *http.Client) *PostScriptExportParams

NewPostScriptExportParamsWithHTTPClient creates a new PostScriptExportParams object with the ability to set a custom HTTPClient for a request.

func NewPostScriptExportParamsWithTimeout

func NewPostScriptExportParamsWithTimeout(timeout time.Duration) *PostScriptExportParams

NewPostScriptExportParamsWithTimeout creates a new PostScriptExportParams object with the ability to set a timeout on a request.

func (*PostScriptExportParams) SetBody

SetBody adds the body to the post script export params

func (*PostScriptExportParams) SetContext

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

SetContext adds the context to the post script export params

func (*PostScriptExportParams) SetDefaults

func (o *PostScriptExportParams) SetDefaults()

SetDefaults hydrates default values in the post script export params (not the query body).

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

func (*PostScriptExportParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post script export params

func (*PostScriptExportParams) SetScriptID

func (o *PostScriptExportParams) SetScriptID(scriptID string)

SetScriptID adds the scriptId to the post script export params

func (*PostScriptExportParams) SetTimeout

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

SetTimeout adds the timeout to the post script export params

func (*PostScriptExportParams) WithBody

WithBody adds the body to the post script export params

func (*PostScriptExportParams) WithContext

WithContext adds the context to the post script export params

func (*PostScriptExportParams) WithDefaults

WithDefaults hydrates default values in the post script export params (not the query body).

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

func (*PostScriptExportParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post script export params

func (*PostScriptExportParams) WithScriptID

func (o *PostScriptExportParams) WithScriptID(scriptID string) *PostScriptExportParams

WithScriptID adds the scriptID to the post script export params

func (*PostScriptExportParams) WithTimeout

WithTimeout adds the timeout to the post script export params

func (*PostScriptExportParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostScriptExportReader

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

PostScriptExportReader is a Reader for the PostScriptExport structure.

func (*PostScriptExportReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostScriptExportRequestEntityTooLarge

type PostScriptExportRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostScriptExportRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostScriptExportRequestEntityTooLarge

func NewPostScriptExportRequestEntityTooLarge() *PostScriptExportRequestEntityTooLarge

NewPostScriptExportRequestEntityTooLarge creates a PostScriptExportRequestEntityTooLarge with default headers values

func (*PostScriptExportRequestEntityTooLarge) Error

func (*PostScriptExportRequestEntityTooLarge) GetPayload

func (*PostScriptExportRequestEntityTooLarge) IsClientError

func (o *PostScriptExportRequestEntityTooLarge) IsClientError() bool

IsClientError returns true when this post script export request entity too large response has a 4xx status code

func (*PostScriptExportRequestEntityTooLarge) IsCode

IsCode returns true when this post script export request entity too large response a status code equal to that given

func (*PostScriptExportRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post script export request entity too large response has a 3xx status code

func (*PostScriptExportRequestEntityTooLarge) IsServerError

func (o *PostScriptExportRequestEntityTooLarge) IsServerError() bool

IsServerError returns true when this post script export request entity too large response has a 5xx status code

func (*PostScriptExportRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post script export request entity too large response has a 2xx status code

func (*PostScriptExportRequestEntityTooLarge) String

type PostScriptExportRequestTimeout

type PostScriptExportRequestTimeout struct {
	Payload *models.ErrorBody
}

PostScriptExportRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostScriptExportRequestTimeout

func NewPostScriptExportRequestTimeout() *PostScriptExportRequestTimeout

NewPostScriptExportRequestTimeout creates a PostScriptExportRequestTimeout with default headers values

func (*PostScriptExportRequestTimeout) Error

func (*PostScriptExportRequestTimeout) GetPayload

func (*PostScriptExportRequestTimeout) IsClientError

func (o *PostScriptExportRequestTimeout) IsClientError() bool

IsClientError returns true when this post script export request timeout response has a 4xx status code

func (*PostScriptExportRequestTimeout) IsCode

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

IsCode returns true when this post script export request timeout response a status code equal to that given

func (*PostScriptExportRequestTimeout) IsRedirect

func (o *PostScriptExportRequestTimeout) IsRedirect() bool

IsRedirect returns true when this post script export request timeout response has a 3xx status code

func (*PostScriptExportRequestTimeout) IsServerError

func (o *PostScriptExportRequestTimeout) IsServerError() bool

IsServerError returns true when this post script export request timeout response has a 5xx status code

func (*PostScriptExportRequestTimeout) IsSuccess

func (o *PostScriptExportRequestTimeout) IsSuccess() bool

IsSuccess returns true when this post script export request timeout response has a 2xx status code

func (*PostScriptExportRequestTimeout) String

type PostScriptExportServiceUnavailable

type PostScriptExportServiceUnavailable struct {
	Payload *models.ErrorBody
}

PostScriptExportServiceUnavailable describes a response with status code 503, with default header values.

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostScriptExportServiceUnavailable

func NewPostScriptExportServiceUnavailable() *PostScriptExportServiceUnavailable

NewPostScriptExportServiceUnavailable creates a PostScriptExportServiceUnavailable with default headers values

func (*PostScriptExportServiceUnavailable) Error

func (*PostScriptExportServiceUnavailable) GetPayload

func (*PostScriptExportServiceUnavailable) IsClientError

func (o *PostScriptExportServiceUnavailable) IsClientError() bool

IsClientError returns true when this post script export service unavailable response has a 4xx status code

func (*PostScriptExportServiceUnavailable) IsCode

IsCode returns true when this post script export service unavailable response a status code equal to that given

func (*PostScriptExportServiceUnavailable) IsRedirect

func (o *PostScriptExportServiceUnavailable) IsRedirect() bool

IsRedirect returns true when this post script export service unavailable response has a 3xx status code

func (*PostScriptExportServiceUnavailable) IsServerError

func (o *PostScriptExportServiceUnavailable) IsServerError() bool

IsServerError returns true when this post script export service unavailable response has a 5xx status code

func (*PostScriptExportServiceUnavailable) IsSuccess

IsSuccess returns true when this post script export service unavailable response has a 2xx status code

func (*PostScriptExportServiceUnavailable) String

type PostScriptExportTooManyRequests

type PostScriptExportTooManyRequests struct {
	Payload *models.ErrorBody
}

PostScriptExportTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostScriptExportTooManyRequests

func NewPostScriptExportTooManyRequests() *PostScriptExportTooManyRequests

NewPostScriptExportTooManyRequests creates a PostScriptExportTooManyRequests with default headers values

func (*PostScriptExportTooManyRequests) Error

func (*PostScriptExportTooManyRequests) GetPayload

func (*PostScriptExportTooManyRequests) IsClientError

func (o *PostScriptExportTooManyRequests) IsClientError() bool

IsClientError returns true when this post script export too many requests response has a 4xx status code

func (*PostScriptExportTooManyRequests) IsCode

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

IsCode returns true when this post script export too many requests response a status code equal to that given

func (*PostScriptExportTooManyRequests) IsRedirect

func (o *PostScriptExportTooManyRequests) IsRedirect() bool

IsRedirect returns true when this post script export too many requests response has a 3xx status code

func (*PostScriptExportTooManyRequests) IsServerError

func (o *PostScriptExportTooManyRequests) IsServerError() bool

IsServerError returns true when this post script export too many requests response has a 5xx status code

func (*PostScriptExportTooManyRequests) IsSuccess

func (o *PostScriptExportTooManyRequests) IsSuccess() bool

IsSuccess returns true when this post script export too many requests response has a 2xx status code

func (*PostScriptExportTooManyRequests) String

type PostScriptExportUnauthorized

type PostScriptExportUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostScriptExportUnauthorized

func NewPostScriptExportUnauthorized() *PostScriptExportUnauthorized

NewPostScriptExportUnauthorized creates a PostScriptExportUnauthorized with default headers values

func (*PostScriptExportUnauthorized) Error

func (*PostScriptExportUnauthorized) GetPayload

func (*PostScriptExportUnauthorized) IsClientError

func (o *PostScriptExportUnauthorized) IsClientError() bool

IsClientError returns true when this post script export unauthorized response has a 4xx status code

func (*PostScriptExportUnauthorized) IsCode

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

IsCode returns true when this post script export unauthorized response a status code equal to that given

func (*PostScriptExportUnauthorized) IsRedirect

func (o *PostScriptExportUnauthorized) IsRedirect() bool

IsRedirect returns true when this post script export unauthorized response has a 3xx status code

func (*PostScriptExportUnauthorized) IsServerError

func (o *PostScriptExportUnauthorized) IsServerError() bool

IsServerError returns true when this post script export unauthorized response has a 5xx status code

func (*PostScriptExportUnauthorized) IsSuccess

func (o *PostScriptExportUnauthorized) IsSuccess() bool

IsSuccess returns true when this post script export unauthorized response has a 2xx status code

func (*PostScriptExportUnauthorized) String

type PostScriptExportUnsupportedMediaType

type PostScriptExportUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostScriptExportUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostScriptExportUnsupportedMediaType

func NewPostScriptExportUnsupportedMediaType() *PostScriptExportUnsupportedMediaType

NewPostScriptExportUnsupportedMediaType creates a PostScriptExportUnsupportedMediaType with default headers values

func (*PostScriptExportUnsupportedMediaType) Error

func (*PostScriptExportUnsupportedMediaType) GetPayload

func (*PostScriptExportUnsupportedMediaType) IsClientError

func (o *PostScriptExportUnsupportedMediaType) IsClientError() bool

IsClientError returns true when this post script export unsupported media type response has a 4xx status code

func (*PostScriptExportUnsupportedMediaType) IsCode

IsCode returns true when this post script export unsupported media type response a status code equal to that given

func (*PostScriptExportUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post script export unsupported media type response has a 3xx status code

func (*PostScriptExportUnsupportedMediaType) IsServerError

func (o *PostScriptExportUnsupportedMediaType) IsServerError() bool

IsServerError returns true when this post script export unsupported media type response has a 5xx status code

func (*PostScriptExportUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post script export unsupported media type response has a 2xx status code

func (*PostScriptExportUnsupportedMediaType) String

Jump to

Keyboard shortcuts

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