service_catalogs

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: May 29, 2025 License: MIT Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func WithAcceptApplicationJSON

func WithAcceptApplicationJSON(r *runtime.ClientOperation)

WithAcceptApplicationJSON sets the Accept header to "application/json".

func WithAcceptApplicationVndCycloidIoV1JSON

func WithAcceptApplicationVndCycloidIoV1JSON(r *runtime.ClientOperation)

WithAcceptApplicationVndCycloidIoV1JSON sets the Accept header to "application/vnd.cycloid.io.v1+json".

func WithContentTypeApplicationJSON

func WithContentTypeApplicationJSON(r *runtime.ClientOperation)

WithContentTypeApplicationJSON sets the Content-Type header to "application/json".

func WithContentTypeApplicationVndCycloidIoV1JSON

func WithContentTypeApplicationVndCycloidIoV1JSON(r *runtime.ClientOperation)

WithContentTypeApplicationVndCycloidIoV1JSON sets the Content-Type header to "application/vnd.cycloid.io.v1+json".

func WithContentTypeApplicationxWwwFormUrlencoded

func WithContentTypeApplicationxWwwFormUrlencoded(r *runtime.ClientOperation)

WithContentTypeApplicationxWwwFormUrlencoded sets the Content-Type header to "application/x-www-form-urlencoded".

Types

type Client

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

Client for service catalogs API

func (*Client) CreateServiceCatalog

func (a *Client) CreateServiceCatalog(params *CreateServiceCatalogParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateServiceCatalogOK, error)

CreateServiceCatalog Create a new Service Catalog

func (*Client) CreateServiceCatalogFromTemplate

func (a *Client) CreateServiceCatalogFromTemplate(params *CreateServiceCatalogFromTemplateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateServiceCatalogFromTemplateOK, error)

CreateServiceCatalogFromTemplate Create a new Service Catalog using the ref and use case passed as template

func (*Client) DeleteServiceCatalog

func (a *Client) DeleteServiceCatalog(params *DeleteServiceCatalogParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteServiceCatalogNoContent, error)

DeleteServiceCatalog Delete the service catalog.

func (*Client) GetServiceCatalog

func (a *Client) GetServiceCatalog(params *GetServiceCatalogParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogOK, error)

GetServiceCatalog Get the information of the service catalog

func (*Client) GetServiceCatalogConfig

func (a *Client) GetServiceCatalogConfig(params *GetServiceCatalogConfigParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogConfigOK, error)

GetServiceCatalogConfig Get the config of the service catalog

func (*Client) GetServiceCatalogTerraform

func (a *Client) GetServiceCatalogTerraform(params *GetServiceCatalogTerraformParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogTerraformOK, error)

GetServiceCatalogTerraform Get the information of the service catalog Terraform config

func (*Client) GetServiceCatalogTerraformDiagram

func (a *Client) GetServiceCatalogTerraformDiagram(params *GetServiceCatalogTerraformDiagramParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogTerraformDiagramOK, error)

GetServiceCatalogTerraformDiagram Get the information of the service catalog Terraform diagram

func (*Client) GetServiceCatalogTerraformImage

func (a *Client) GetServiceCatalogTerraformImage(params *GetServiceCatalogTerraformImageParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogTerraformImageOK, error)

GetServiceCatalogTerraformImage Get the SC TF Image

func (*Client) ListServiceCatalogs

func (a *Client) ListServiceCatalogs(params *ListServiceCatalogsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServiceCatalogsOK, error)

ListServiceCatalogs Return all the service catalogs

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateServiceCatalog

func (a *Client) UpdateServiceCatalog(params *UpdateServiceCatalogParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateServiceCatalogOK, error)

UpdateServiceCatalog Update the information of the service catalog

func (*Client) UpdateServiceCatalogTerraform

UpdateServiceCatalogTerraform Update/Create the information of the service catalog Terraform config

func (*Client) UpdateServiceCatalogTerraformDiagram

UpdateServiceCatalogTerraformDiagram Update/Create the information of the service catalog Terraform diagram

func (*Client) UpdateServiceCatalogTerraformImage

UpdateServiceCatalogTerraformImage Update/Create the Image for the SC TF Image

func (*Client) ValidateServiceCatalogDependencies

func (a *Client) ValidateServiceCatalogDependencies(params *ValidateServiceCatalogDependenciesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ValidateServiceCatalogDependenciesOK, error)

ValidateServiceCatalogDependencies Validates the dependencies of a Service Catalog

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption may be used to customize the behavior of Client methods.

func WithAccept

func WithAccept(mime string) ClientOption

WithAccept allows the client to force the Accept header to negotiate a specific Producer from the server.

You may use this option to set arbitrary extensions to your MIME media type.

func WithContentType

func WithContentType(mime string) ClientOption

WithContentType allows the client to force the Content-Type header to negotiate a specific Consumer from the server.

You may use this option to set arbitrary extensions to your MIME media type.

type ClientService

type ClientService interface {
	CreateServiceCatalog(params *CreateServiceCatalogParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateServiceCatalogOK, error)

	CreateServiceCatalogFromTemplate(params *CreateServiceCatalogFromTemplateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateServiceCatalogFromTemplateOK, error)

	DeleteServiceCatalog(params *DeleteServiceCatalogParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteServiceCatalogNoContent, error)

	GetServiceCatalog(params *GetServiceCatalogParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogOK, error)

	GetServiceCatalogConfig(params *GetServiceCatalogConfigParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogConfigOK, error)

	GetServiceCatalogTerraform(params *GetServiceCatalogTerraformParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogTerraformOK, error)

	GetServiceCatalogTerraformDiagram(params *GetServiceCatalogTerraformDiagramParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogTerraformDiagramOK, error)

	GetServiceCatalogTerraformImage(params *GetServiceCatalogTerraformImageParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetServiceCatalogTerraformImageOK, error)

	ListServiceCatalogs(params *ListServiceCatalogsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListServiceCatalogsOK, error)

	UpdateServiceCatalog(params *UpdateServiceCatalogParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateServiceCatalogOK, error)

	UpdateServiceCatalogTerraform(params *UpdateServiceCatalogTerraformParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateServiceCatalogTerraformNoContent, error)

	UpdateServiceCatalogTerraformDiagram(params *UpdateServiceCatalogTerraformDiagramParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateServiceCatalogTerraformDiagramNoContent, error)

	UpdateServiceCatalogTerraformImage(params *UpdateServiceCatalogTerraformImageParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateServiceCatalogTerraformImageNoContent, error)

	ValidateServiceCatalogDependencies(params *ValidateServiceCatalogDependenciesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ValidateServiceCatalogDependenciesOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new service catalogs API client.

func NewClientWithBasicAuth

func NewClientWithBasicAuth(host, basePath, scheme, user, password string) ClientService

New creates a new service catalogs API client with basic auth credentials. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - user: user for basic authentication header. - password: password for basic authentication header.

func NewClientWithBearerToken

func NewClientWithBearerToken(host, basePath, scheme, bearerToken string) ClientService

New creates a new service catalogs API client with a bearer token for authentication. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - bearerToken: bearer token for Bearer authentication header.

type CreateServiceCatalogDefault

type CreateServiceCatalogDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

CreateServiceCatalogDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewCreateServiceCatalogDefault

func NewCreateServiceCatalogDefault(code int) *CreateServiceCatalogDefault

NewCreateServiceCatalogDefault creates a CreateServiceCatalogDefault with default headers values

func (*CreateServiceCatalogDefault) Code

func (o *CreateServiceCatalogDefault) Code() int

Code gets the status code for the create service catalog default response

func (*CreateServiceCatalogDefault) Error

func (*CreateServiceCatalogDefault) GetPayload

func (*CreateServiceCatalogDefault) IsClientError

func (o *CreateServiceCatalogDefault) IsClientError() bool

IsClientError returns true when this create service catalog default response has a 4xx status code

func (*CreateServiceCatalogDefault) IsCode

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

IsCode returns true when this create service catalog default response a status code equal to that given

func (*CreateServiceCatalogDefault) IsRedirect

func (o *CreateServiceCatalogDefault) IsRedirect() bool

IsRedirect returns true when this create service catalog default response has a 3xx status code

func (*CreateServiceCatalogDefault) IsServerError

func (o *CreateServiceCatalogDefault) IsServerError() bool

IsServerError returns true when this create service catalog default response has a 5xx status code

func (*CreateServiceCatalogDefault) IsSuccess

func (o *CreateServiceCatalogDefault) IsSuccess() bool

IsSuccess returns true when this create service catalog default response has a 2xx status code

func (*CreateServiceCatalogDefault) String

func (o *CreateServiceCatalogDefault) String() string

type CreateServiceCatalogForbidden

type CreateServiceCatalogForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewCreateServiceCatalogForbidden

func NewCreateServiceCatalogForbidden() *CreateServiceCatalogForbidden

NewCreateServiceCatalogForbidden creates a CreateServiceCatalogForbidden with default headers values

func (*CreateServiceCatalogForbidden) Code

Code gets the status code for the create service catalog forbidden response

func (*CreateServiceCatalogForbidden) Error

func (*CreateServiceCatalogForbidden) GetPayload

func (*CreateServiceCatalogForbidden) IsClientError

func (o *CreateServiceCatalogForbidden) IsClientError() bool

IsClientError returns true when this create service catalog forbidden response has a 4xx status code

func (*CreateServiceCatalogForbidden) IsCode

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

IsCode returns true when this create service catalog forbidden response a status code equal to that given

func (*CreateServiceCatalogForbidden) IsRedirect

func (o *CreateServiceCatalogForbidden) IsRedirect() bool

IsRedirect returns true when this create service catalog forbidden response has a 3xx status code

func (*CreateServiceCatalogForbidden) IsServerError

func (o *CreateServiceCatalogForbidden) IsServerError() bool

IsServerError returns true when this create service catalog forbidden response has a 5xx status code

func (*CreateServiceCatalogForbidden) IsSuccess

func (o *CreateServiceCatalogForbidden) IsSuccess() bool

IsSuccess returns true when this create service catalog forbidden response has a 2xx status code

func (*CreateServiceCatalogForbidden) String

type CreateServiceCatalogFromTemplateDefault

type CreateServiceCatalogFromTemplateDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

CreateServiceCatalogFromTemplateDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewCreateServiceCatalogFromTemplateDefault

func NewCreateServiceCatalogFromTemplateDefault(code int) *CreateServiceCatalogFromTemplateDefault

NewCreateServiceCatalogFromTemplateDefault creates a CreateServiceCatalogFromTemplateDefault with default headers values

func (*CreateServiceCatalogFromTemplateDefault) Code

Code gets the status code for the create service catalog from template default response

func (*CreateServiceCatalogFromTemplateDefault) Error

func (*CreateServiceCatalogFromTemplateDefault) GetPayload

func (*CreateServiceCatalogFromTemplateDefault) IsClientError

func (o *CreateServiceCatalogFromTemplateDefault) IsClientError() bool

IsClientError returns true when this create service catalog from template default response has a 4xx status code

func (*CreateServiceCatalogFromTemplateDefault) IsCode

IsCode returns true when this create service catalog from template default response a status code equal to that given

func (*CreateServiceCatalogFromTemplateDefault) IsRedirect

IsRedirect returns true when this create service catalog from template default response has a 3xx status code

func (*CreateServiceCatalogFromTemplateDefault) IsServerError

func (o *CreateServiceCatalogFromTemplateDefault) IsServerError() bool

IsServerError returns true when this create service catalog from template default response has a 5xx status code

func (*CreateServiceCatalogFromTemplateDefault) IsSuccess

IsSuccess returns true when this create service catalog from template default response has a 2xx status code

func (*CreateServiceCatalogFromTemplateDefault) String

type CreateServiceCatalogFromTemplateForbidden

type CreateServiceCatalogFromTemplateForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewCreateServiceCatalogFromTemplateForbidden

func NewCreateServiceCatalogFromTemplateForbidden() *CreateServiceCatalogFromTemplateForbidden

NewCreateServiceCatalogFromTemplateForbidden creates a CreateServiceCatalogFromTemplateForbidden with default headers values

func (*CreateServiceCatalogFromTemplateForbidden) Code

Code gets the status code for the create service catalog from template forbidden response

func (*CreateServiceCatalogFromTemplateForbidden) Error

func (*CreateServiceCatalogFromTemplateForbidden) GetPayload

func (*CreateServiceCatalogFromTemplateForbidden) IsClientError

IsClientError returns true when this create service catalog from template forbidden response has a 4xx status code

func (*CreateServiceCatalogFromTemplateForbidden) IsCode

IsCode returns true when this create service catalog from template forbidden response a status code equal to that given

func (*CreateServiceCatalogFromTemplateForbidden) IsRedirect

IsRedirect returns true when this create service catalog from template forbidden response has a 3xx status code

func (*CreateServiceCatalogFromTemplateForbidden) IsServerError

IsServerError returns true when this create service catalog from template forbidden response has a 5xx status code

func (*CreateServiceCatalogFromTemplateForbidden) IsSuccess

IsSuccess returns true when this create service catalog from template forbidden response has a 2xx status code

func (*CreateServiceCatalogFromTemplateForbidden) String

type CreateServiceCatalogFromTemplateNotFound

type CreateServiceCatalogFromTemplateNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewCreateServiceCatalogFromTemplateNotFound

func NewCreateServiceCatalogFromTemplateNotFound() *CreateServiceCatalogFromTemplateNotFound

NewCreateServiceCatalogFromTemplateNotFound creates a CreateServiceCatalogFromTemplateNotFound with default headers values

func (*CreateServiceCatalogFromTemplateNotFound) Code

Code gets the status code for the create service catalog from template not found response

func (*CreateServiceCatalogFromTemplateNotFound) Error

func (*CreateServiceCatalogFromTemplateNotFound) GetPayload

func (*CreateServiceCatalogFromTemplateNotFound) IsClientError

IsClientError returns true when this create service catalog from template not found response has a 4xx status code

func (*CreateServiceCatalogFromTemplateNotFound) IsCode

IsCode returns true when this create service catalog from template not found response a status code equal to that given

func (*CreateServiceCatalogFromTemplateNotFound) IsRedirect

IsRedirect returns true when this create service catalog from template not found response has a 3xx status code

func (*CreateServiceCatalogFromTemplateNotFound) IsServerError

IsServerError returns true when this create service catalog from template not found response has a 5xx status code

func (*CreateServiceCatalogFromTemplateNotFound) IsSuccess

IsSuccess returns true when this create service catalog from template not found response has a 2xx status code

func (*CreateServiceCatalogFromTemplateNotFound) String

type CreateServiceCatalogFromTemplateOK

type CreateServiceCatalogFromTemplateOK struct {
	Payload *CreateServiceCatalogFromTemplateOKBody
}

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

The information of the service catalog.

func NewCreateServiceCatalogFromTemplateOK

func NewCreateServiceCatalogFromTemplateOK() *CreateServiceCatalogFromTemplateOK

NewCreateServiceCatalogFromTemplateOK creates a CreateServiceCatalogFromTemplateOK with default headers values

func (*CreateServiceCatalogFromTemplateOK) Code

Code gets the status code for the create service catalog from template o k response

func (*CreateServiceCatalogFromTemplateOK) Error

func (*CreateServiceCatalogFromTemplateOK) GetPayload

func (*CreateServiceCatalogFromTemplateOK) IsClientError

func (o *CreateServiceCatalogFromTemplateOK) IsClientError() bool

IsClientError returns true when this create service catalog from template o k response has a 4xx status code

func (*CreateServiceCatalogFromTemplateOK) IsCode

IsCode returns true when this create service catalog from template o k response a status code equal to that given

func (*CreateServiceCatalogFromTemplateOK) IsRedirect

func (o *CreateServiceCatalogFromTemplateOK) IsRedirect() bool

IsRedirect returns true when this create service catalog from template o k response has a 3xx status code

func (*CreateServiceCatalogFromTemplateOK) IsServerError

func (o *CreateServiceCatalogFromTemplateOK) IsServerError() bool

IsServerError returns true when this create service catalog from template o k response has a 5xx status code

func (*CreateServiceCatalogFromTemplateOK) IsSuccess

IsSuccess returns true when this create service catalog from template o k response has a 2xx status code

func (*CreateServiceCatalogFromTemplateOK) String

type CreateServiceCatalogFromTemplateOKBody

type CreateServiceCatalogFromTemplateOKBody struct {

	// data
	// Required: true
	Data *models.ServiceCatalog `json:"data"`
}

CreateServiceCatalogFromTemplateOKBody create service catalog from template o k body swagger:model CreateServiceCatalogFromTemplateOKBody

func (*CreateServiceCatalogFromTemplateOKBody) ContextValidate

ContextValidate validate this create service catalog from template o k body based on the context it is used

func (*CreateServiceCatalogFromTemplateOKBody) MarshalBinary

func (o *CreateServiceCatalogFromTemplateOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*CreateServiceCatalogFromTemplateOKBody) UnmarshalBinary

func (o *CreateServiceCatalogFromTemplateOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*CreateServiceCatalogFromTemplateOKBody) Validate

Validate validates this create service catalog from template o k body

type CreateServiceCatalogFromTemplateParams

type CreateServiceCatalogFromTemplateParams struct {

	/* Body.

	   The information of the ServiceCatalog.
	*/
	Body *models.NewServiceCatalogFromTemplate

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

CreateServiceCatalogFromTemplateParams contains all the parameters to send to the API endpoint

for the create service catalog from template operation.

Typically these are written to a http.Request.

func NewCreateServiceCatalogFromTemplateParams

func NewCreateServiceCatalogFromTemplateParams() *CreateServiceCatalogFromTemplateParams

NewCreateServiceCatalogFromTemplateParams creates a new CreateServiceCatalogFromTemplateParams 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 NewCreateServiceCatalogFromTemplateParamsWithContext

func NewCreateServiceCatalogFromTemplateParamsWithContext(ctx context.Context) *CreateServiceCatalogFromTemplateParams

NewCreateServiceCatalogFromTemplateParamsWithContext creates a new CreateServiceCatalogFromTemplateParams object with the ability to set a context for a request.

func NewCreateServiceCatalogFromTemplateParamsWithHTTPClient

func NewCreateServiceCatalogFromTemplateParamsWithHTTPClient(client *http.Client) *CreateServiceCatalogFromTemplateParams

NewCreateServiceCatalogFromTemplateParamsWithHTTPClient creates a new CreateServiceCatalogFromTemplateParams object with the ability to set a custom HTTPClient for a request.

func NewCreateServiceCatalogFromTemplateParamsWithTimeout

func NewCreateServiceCatalogFromTemplateParamsWithTimeout(timeout time.Duration) *CreateServiceCatalogFromTemplateParams

NewCreateServiceCatalogFromTemplateParamsWithTimeout creates a new CreateServiceCatalogFromTemplateParams object with the ability to set a timeout on a request.

func (*CreateServiceCatalogFromTemplateParams) SetBody

SetBody adds the body to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) SetContext

SetContext adds the context to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) SetDefaults

func (o *CreateServiceCatalogFromTemplateParams) SetDefaults()

SetDefaults hydrates default values in the create service catalog from template params (not the query body).

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

func (*CreateServiceCatalogFromTemplateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) SetOrganizationCanonical

func (o *CreateServiceCatalogFromTemplateParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) SetServiceCatalogRef

func (o *CreateServiceCatalogFromTemplateParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) SetTimeout

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

SetTimeout adds the timeout to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) WithBody

WithBody adds the body to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) WithContext

WithContext adds the context to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) WithDefaults

WithDefaults hydrates default values in the create service catalog from template params (not the query body).

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

func (*CreateServiceCatalogFromTemplateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) WithOrganizationCanonical

func (o *CreateServiceCatalogFromTemplateParams) WithOrganizationCanonical(organizationCanonical string) *CreateServiceCatalogFromTemplateParams

WithOrganizationCanonical adds the organizationCanonical to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) WithServiceCatalogRef

func (o *CreateServiceCatalogFromTemplateParams) WithServiceCatalogRef(serviceCatalogRef string) *CreateServiceCatalogFromTemplateParams

WithServiceCatalogRef adds the serviceCatalogRef to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) WithTimeout

WithTimeout adds the timeout to the create service catalog from template params

func (*CreateServiceCatalogFromTemplateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateServiceCatalogFromTemplateReader

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

CreateServiceCatalogFromTemplateReader is a Reader for the CreateServiceCatalogFromTemplate structure.

func (*CreateServiceCatalogFromTemplateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateServiceCatalogFromTemplateUnprocessableEntity

type CreateServiceCatalogFromTemplateUnprocessableEntity struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

CreateServiceCatalogFromTemplateUnprocessableEntity describes a response with status code 422, with default header values.

All the custom errors that are generated from the Cycloid API

func NewCreateServiceCatalogFromTemplateUnprocessableEntity

func NewCreateServiceCatalogFromTemplateUnprocessableEntity() *CreateServiceCatalogFromTemplateUnprocessableEntity

NewCreateServiceCatalogFromTemplateUnprocessableEntity creates a CreateServiceCatalogFromTemplateUnprocessableEntity with default headers values

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) Code

Code gets the status code for the create service catalog from template unprocessable entity response

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) Error

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) GetPayload

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) IsClientError

IsClientError returns true when this create service catalog from template unprocessable entity response has a 4xx status code

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) IsCode

IsCode returns true when this create service catalog from template unprocessable entity response a status code equal to that given

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) IsRedirect

IsRedirect returns true when this create service catalog from template unprocessable entity response has a 3xx status code

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) IsServerError

IsServerError returns true when this create service catalog from template unprocessable entity response has a 5xx status code

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) IsSuccess

IsSuccess returns true when this create service catalog from template unprocessable entity response has a 2xx status code

func (*CreateServiceCatalogFromTemplateUnprocessableEntity) String

type CreateServiceCatalogNotFound

type CreateServiceCatalogNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewCreateServiceCatalogNotFound

func NewCreateServiceCatalogNotFound() *CreateServiceCatalogNotFound

NewCreateServiceCatalogNotFound creates a CreateServiceCatalogNotFound with default headers values

func (*CreateServiceCatalogNotFound) Code

Code gets the status code for the create service catalog not found response

func (*CreateServiceCatalogNotFound) Error

func (*CreateServiceCatalogNotFound) GetPayload

func (*CreateServiceCatalogNotFound) IsClientError

func (o *CreateServiceCatalogNotFound) IsClientError() bool

IsClientError returns true when this create service catalog not found response has a 4xx status code

func (*CreateServiceCatalogNotFound) IsCode

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

IsCode returns true when this create service catalog not found response a status code equal to that given

func (*CreateServiceCatalogNotFound) IsRedirect

func (o *CreateServiceCatalogNotFound) IsRedirect() bool

IsRedirect returns true when this create service catalog not found response has a 3xx status code

func (*CreateServiceCatalogNotFound) IsServerError

func (o *CreateServiceCatalogNotFound) IsServerError() bool

IsServerError returns true when this create service catalog not found response has a 5xx status code

func (*CreateServiceCatalogNotFound) IsSuccess

func (o *CreateServiceCatalogNotFound) IsSuccess() bool

IsSuccess returns true when this create service catalog not found response has a 2xx status code

func (*CreateServiceCatalogNotFound) String

type CreateServiceCatalogOK

type CreateServiceCatalogOK struct {
	Payload *CreateServiceCatalogOKBody
}

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

The information of the service catalog.

func NewCreateServiceCatalogOK

func NewCreateServiceCatalogOK() *CreateServiceCatalogOK

NewCreateServiceCatalogOK creates a CreateServiceCatalogOK with default headers values

func (*CreateServiceCatalogOK) Code

func (o *CreateServiceCatalogOK) Code() int

Code gets the status code for the create service catalog o k response

func (*CreateServiceCatalogOK) Error

func (o *CreateServiceCatalogOK) Error() string

func (*CreateServiceCatalogOK) GetPayload

func (*CreateServiceCatalogOK) IsClientError

func (o *CreateServiceCatalogOK) IsClientError() bool

IsClientError returns true when this create service catalog o k response has a 4xx status code

func (*CreateServiceCatalogOK) IsCode

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

IsCode returns true when this create service catalog o k response a status code equal to that given

func (*CreateServiceCatalogOK) IsRedirect

func (o *CreateServiceCatalogOK) IsRedirect() bool

IsRedirect returns true when this create service catalog o k response has a 3xx status code

func (*CreateServiceCatalogOK) IsServerError

func (o *CreateServiceCatalogOK) IsServerError() bool

IsServerError returns true when this create service catalog o k response has a 5xx status code

func (*CreateServiceCatalogOK) IsSuccess

func (o *CreateServiceCatalogOK) IsSuccess() bool

IsSuccess returns true when this create service catalog o k response has a 2xx status code

func (*CreateServiceCatalogOK) String

func (o *CreateServiceCatalogOK) String() string

type CreateServiceCatalogOKBody

type CreateServiceCatalogOKBody struct {

	// data
	// Required: true
	Data *models.ServiceCatalog `json:"data"`
}

CreateServiceCatalogOKBody create service catalog o k body swagger:model CreateServiceCatalogOKBody

func (*CreateServiceCatalogOKBody) ContextValidate

func (o *CreateServiceCatalogOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this create service catalog o k body based on the context it is used

func (*CreateServiceCatalogOKBody) MarshalBinary

func (o *CreateServiceCatalogOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*CreateServiceCatalogOKBody) UnmarshalBinary

func (o *CreateServiceCatalogOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*CreateServiceCatalogOKBody) Validate

func (o *CreateServiceCatalogOKBody) Validate(formats strfmt.Registry) error

Validate validates this create service catalog o k body

type CreateServiceCatalogParams

type CreateServiceCatalogParams struct {

	/* Body.

	   The information of the ServiceCatalog.
	*/
	Body *models.NewServiceCatalog

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

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

CreateServiceCatalogParams contains all the parameters to send to the API endpoint

for the create service catalog operation.

Typically these are written to a http.Request.

func NewCreateServiceCatalogParams

func NewCreateServiceCatalogParams() *CreateServiceCatalogParams

NewCreateServiceCatalogParams creates a new CreateServiceCatalogParams 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 NewCreateServiceCatalogParamsWithContext

func NewCreateServiceCatalogParamsWithContext(ctx context.Context) *CreateServiceCatalogParams

NewCreateServiceCatalogParamsWithContext creates a new CreateServiceCatalogParams object with the ability to set a context for a request.

func NewCreateServiceCatalogParamsWithHTTPClient

func NewCreateServiceCatalogParamsWithHTTPClient(client *http.Client) *CreateServiceCatalogParams

NewCreateServiceCatalogParamsWithHTTPClient creates a new CreateServiceCatalogParams object with the ability to set a custom HTTPClient for a request.

func NewCreateServiceCatalogParamsWithTimeout

func NewCreateServiceCatalogParamsWithTimeout(timeout time.Duration) *CreateServiceCatalogParams

NewCreateServiceCatalogParamsWithTimeout creates a new CreateServiceCatalogParams object with the ability to set a timeout on a request.

func (*CreateServiceCatalogParams) SetBody

SetBody adds the body to the create service catalog params

func (*CreateServiceCatalogParams) SetContext

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

SetContext adds the context to the create service catalog params

func (*CreateServiceCatalogParams) SetDefaults

func (o *CreateServiceCatalogParams) SetDefaults()

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

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

func (*CreateServiceCatalogParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create service catalog params

func (*CreateServiceCatalogParams) SetOrganizationCanonical

func (o *CreateServiceCatalogParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the create service catalog params

func (*CreateServiceCatalogParams) SetTimeout

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

SetTimeout adds the timeout to the create service catalog params

func (*CreateServiceCatalogParams) WithBody

WithBody adds the body to the create service catalog params

func (*CreateServiceCatalogParams) WithContext

WithContext adds the context to the create service catalog params

func (*CreateServiceCatalogParams) WithDefaults

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

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

func (*CreateServiceCatalogParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create service catalog params

func (*CreateServiceCatalogParams) WithOrganizationCanonical

func (o *CreateServiceCatalogParams) WithOrganizationCanonical(organizationCanonical string) *CreateServiceCatalogParams

WithOrganizationCanonical adds the organizationCanonical to the create service catalog params

func (*CreateServiceCatalogParams) WithTimeout

WithTimeout adds the timeout to the create service catalog params

func (*CreateServiceCatalogParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateServiceCatalogReader

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

CreateServiceCatalogReader is a Reader for the CreateServiceCatalog structure.

func (*CreateServiceCatalogReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateServiceCatalogUnprocessableEntity

type CreateServiceCatalogUnprocessableEntity struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

CreateServiceCatalogUnprocessableEntity describes a response with status code 422, with default header values.

All the custom errors that are generated from the Cycloid API

func NewCreateServiceCatalogUnprocessableEntity

func NewCreateServiceCatalogUnprocessableEntity() *CreateServiceCatalogUnprocessableEntity

NewCreateServiceCatalogUnprocessableEntity creates a CreateServiceCatalogUnprocessableEntity with default headers values

func (*CreateServiceCatalogUnprocessableEntity) Code

Code gets the status code for the create service catalog unprocessable entity response

func (*CreateServiceCatalogUnprocessableEntity) Error

func (*CreateServiceCatalogUnprocessableEntity) GetPayload

func (*CreateServiceCatalogUnprocessableEntity) IsClientError

func (o *CreateServiceCatalogUnprocessableEntity) IsClientError() bool

IsClientError returns true when this create service catalog unprocessable entity response has a 4xx status code

func (*CreateServiceCatalogUnprocessableEntity) IsCode

IsCode returns true when this create service catalog unprocessable entity response a status code equal to that given

func (*CreateServiceCatalogUnprocessableEntity) IsRedirect

IsRedirect returns true when this create service catalog unprocessable entity response has a 3xx status code

func (*CreateServiceCatalogUnprocessableEntity) IsServerError

func (o *CreateServiceCatalogUnprocessableEntity) IsServerError() bool

IsServerError returns true when this create service catalog unprocessable entity response has a 5xx status code

func (*CreateServiceCatalogUnprocessableEntity) IsSuccess

IsSuccess returns true when this create service catalog unprocessable entity response has a 2xx status code

func (*CreateServiceCatalogUnprocessableEntity) String

type DeleteServiceCatalogConflict

type DeleteServiceCatalogConflict struct {
}

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

Service Catalog deletion has internal conflict

func NewDeleteServiceCatalogConflict

func NewDeleteServiceCatalogConflict() *DeleteServiceCatalogConflict

NewDeleteServiceCatalogConflict creates a DeleteServiceCatalogConflict with default headers values

func (*DeleteServiceCatalogConflict) Code

Code gets the status code for the delete service catalog conflict response

func (*DeleteServiceCatalogConflict) Error

func (*DeleteServiceCatalogConflict) IsClientError

func (o *DeleteServiceCatalogConflict) IsClientError() bool

IsClientError returns true when this delete service catalog conflict response has a 4xx status code

func (*DeleteServiceCatalogConflict) IsCode

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

IsCode returns true when this delete service catalog conflict response a status code equal to that given

func (*DeleteServiceCatalogConflict) IsRedirect

func (o *DeleteServiceCatalogConflict) IsRedirect() bool

IsRedirect returns true when this delete service catalog conflict response has a 3xx status code

func (*DeleteServiceCatalogConflict) IsServerError

func (o *DeleteServiceCatalogConflict) IsServerError() bool

IsServerError returns true when this delete service catalog conflict response has a 5xx status code

func (*DeleteServiceCatalogConflict) IsSuccess

func (o *DeleteServiceCatalogConflict) IsSuccess() bool

IsSuccess returns true when this delete service catalog conflict response has a 2xx status code

func (*DeleteServiceCatalogConflict) String

type DeleteServiceCatalogForbidden

type DeleteServiceCatalogForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewDeleteServiceCatalogForbidden

func NewDeleteServiceCatalogForbidden() *DeleteServiceCatalogForbidden

NewDeleteServiceCatalogForbidden creates a DeleteServiceCatalogForbidden with default headers values

func (*DeleteServiceCatalogForbidden) Code

Code gets the status code for the delete service catalog forbidden response

func (*DeleteServiceCatalogForbidden) Error

func (*DeleteServiceCatalogForbidden) GetPayload

func (*DeleteServiceCatalogForbidden) IsClientError

func (o *DeleteServiceCatalogForbidden) IsClientError() bool

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

func (*DeleteServiceCatalogForbidden) IsCode

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

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

func (*DeleteServiceCatalogForbidden) IsRedirect

func (o *DeleteServiceCatalogForbidden) IsRedirect() bool

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

func (*DeleteServiceCatalogForbidden) IsServerError

func (o *DeleteServiceCatalogForbidden) IsServerError() bool

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

func (*DeleteServiceCatalogForbidden) IsSuccess

func (o *DeleteServiceCatalogForbidden) IsSuccess() bool

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

func (*DeleteServiceCatalogForbidden) String

type DeleteServiceCatalogNoContent

type DeleteServiceCatalogNoContent struct {
}

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

Service Catalog has been deleted.

func NewDeleteServiceCatalogNoContent

func NewDeleteServiceCatalogNoContent() *DeleteServiceCatalogNoContent

NewDeleteServiceCatalogNoContent creates a DeleteServiceCatalogNoContent with default headers values

func (*DeleteServiceCatalogNoContent) Code

Code gets the status code for the delete service catalog no content response

func (*DeleteServiceCatalogNoContent) Error

func (*DeleteServiceCatalogNoContent) IsClientError

func (o *DeleteServiceCatalogNoContent) IsClientError() bool

IsClientError returns true when this delete service catalog no content response has a 4xx status code

func (*DeleteServiceCatalogNoContent) IsCode

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

IsCode returns true when this delete service catalog no content response a status code equal to that given

func (*DeleteServiceCatalogNoContent) IsRedirect

func (o *DeleteServiceCatalogNoContent) IsRedirect() bool

IsRedirect returns true when this delete service catalog no content response has a 3xx status code

func (*DeleteServiceCatalogNoContent) IsServerError

func (o *DeleteServiceCatalogNoContent) IsServerError() bool

IsServerError returns true when this delete service catalog no content response has a 5xx status code

func (*DeleteServiceCatalogNoContent) IsSuccess

func (o *DeleteServiceCatalogNoContent) IsSuccess() bool

IsSuccess returns true when this delete service catalog no content response has a 2xx status code

func (*DeleteServiceCatalogNoContent) String

type DeleteServiceCatalogNotFound

type DeleteServiceCatalogNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewDeleteServiceCatalogNotFound

func NewDeleteServiceCatalogNotFound() *DeleteServiceCatalogNotFound

NewDeleteServiceCatalogNotFound creates a DeleteServiceCatalogNotFound with default headers values

func (*DeleteServiceCatalogNotFound) Code

Code gets the status code for the delete service catalog not found response

func (*DeleteServiceCatalogNotFound) Error

func (*DeleteServiceCatalogNotFound) GetPayload

func (*DeleteServiceCatalogNotFound) IsClientError

func (o *DeleteServiceCatalogNotFound) IsClientError() bool

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

func (*DeleteServiceCatalogNotFound) IsCode

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

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

func (*DeleteServiceCatalogNotFound) IsRedirect

func (o *DeleteServiceCatalogNotFound) IsRedirect() bool

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

func (*DeleteServiceCatalogNotFound) IsServerError

func (o *DeleteServiceCatalogNotFound) IsServerError() bool

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

func (*DeleteServiceCatalogNotFound) IsSuccess

func (o *DeleteServiceCatalogNotFound) IsSuccess() bool

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

func (*DeleteServiceCatalogNotFound) String

type DeleteServiceCatalogParams

type DeleteServiceCatalogParams struct {

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

DeleteServiceCatalogParams contains all the parameters to send to the API endpoint

for the delete service catalog operation.

Typically these are written to a http.Request.

func NewDeleteServiceCatalogParams

func NewDeleteServiceCatalogParams() *DeleteServiceCatalogParams

NewDeleteServiceCatalogParams creates a new DeleteServiceCatalogParams 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 NewDeleteServiceCatalogParamsWithContext

func NewDeleteServiceCatalogParamsWithContext(ctx context.Context) *DeleteServiceCatalogParams

NewDeleteServiceCatalogParamsWithContext creates a new DeleteServiceCatalogParams object with the ability to set a context for a request.

func NewDeleteServiceCatalogParamsWithHTTPClient

func NewDeleteServiceCatalogParamsWithHTTPClient(client *http.Client) *DeleteServiceCatalogParams

NewDeleteServiceCatalogParamsWithHTTPClient creates a new DeleteServiceCatalogParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteServiceCatalogParamsWithTimeout

func NewDeleteServiceCatalogParamsWithTimeout(timeout time.Duration) *DeleteServiceCatalogParams

NewDeleteServiceCatalogParamsWithTimeout creates a new DeleteServiceCatalogParams object with the ability to set a timeout on a request.

func (*DeleteServiceCatalogParams) SetContext

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

SetContext adds the context to the delete service catalog params

func (*DeleteServiceCatalogParams) SetDefaults

func (o *DeleteServiceCatalogParams) SetDefaults()

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

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

func (*DeleteServiceCatalogParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete service catalog params

func (*DeleteServiceCatalogParams) SetOrganizationCanonical

func (o *DeleteServiceCatalogParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the delete service catalog params

func (*DeleteServiceCatalogParams) SetServiceCatalogRef

func (o *DeleteServiceCatalogParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the delete service catalog params

func (*DeleteServiceCatalogParams) SetTimeout

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

SetTimeout adds the timeout to the delete service catalog params

func (*DeleteServiceCatalogParams) WithContext

WithContext adds the context to the delete service catalog params

func (*DeleteServiceCatalogParams) WithDefaults

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

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

func (*DeleteServiceCatalogParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete service catalog params

func (*DeleteServiceCatalogParams) WithOrganizationCanonical

func (o *DeleteServiceCatalogParams) WithOrganizationCanonical(organizationCanonical string) *DeleteServiceCatalogParams

WithOrganizationCanonical adds the organizationCanonical to the delete service catalog params

func (*DeleteServiceCatalogParams) WithServiceCatalogRef

func (o *DeleteServiceCatalogParams) WithServiceCatalogRef(serviceCatalogRef string) *DeleteServiceCatalogParams

WithServiceCatalogRef adds the serviceCatalogRef to the delete service catalog params

func (*DeleteServiceCatalogParams) WithTimeout

WithTimeout adds the timeout to the delete service catalog params

func (*DeleteServiceCatalogParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteServiceCatalogReader

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

DeleteServiceCatalogReader is a Reader for the DeleteServiceCatalog structure.

func (*DeleteServiceCatalogReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetServiceCatalogConfigDefault

type GetServiceCatalogConfigDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

GetServiceCatalogConfigDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewGetServiceCatalogConfigDefault

func NewGetServiceCatalogConfigDefault(code int) *GetServiceCatalogConfigDefault

NewGetServiceCatalogConfigDefault creates a GetServiceCatalogConfigDefault with default headers values

func (*GetServiceCatalogConfigDefault) Code

Code gets the status code for the get service catalog config default response

func (*GetServiceCatalogConfigDefault) Error

func (*GetServiceCatalogConfigDefault) GetPayload

func (*GetServiceCatalogConfigDefault) IsClientError

func (o *GetServiceCatalogConfigDefault) IsClientError() bool

IsClientError returns true when this get service catalog config default response has a 4xx status code

func (*GetServiceCatalogConfigDefault) IsCode

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

IsCode returns true when this get service catalog config default response a status code equal to that given

func (*GetServiceCatalogConfigDefault) IsRedirect

func (o *GetServiceCatalogConfigDefault) IsRedirect() bool

IsRedirect returns true when this get service catalog config default response has a 3xx status code

func (*GetServiceCatalogConfigDefault) IsServerError

func (o *GetServiceCatalogConfigDefault) IsServerError() bool

IsServerError returns true when this get service catalog config default response has a 5xx status code

func (*GetServiceCatalogConfigDefault) IsSuccess

func (o *GetServiceCatalogConfigDefault) IsSuccess() bool

IsSuccess returns true when this get service catalog config default response has a 2xx status code

func (*GetServiceCatalogConfigDefault) String

type GetServiceCatalogConfigForbidden

type GetServiceCatalogConfigForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewGetServiceCatalogConfigForbidden

func NewGetServiceCatalogConfigForbidden() *GetServiceCatalogConfigForbidden

NewGetServiceCatalogConfigForbidden creates a GetServiceCatalogConfigForbidden with default headers values

func (*GetServiceCatalogConfigForbidden) Code

Code gets the status code for the get service catalog config forbidden response

func (*GetServiceCatalogConfigForbidden) Error

func (*GetServiceCatalogConfigForbidden) GetPayload

func (*GetServiceCatalogConfigForbidden) IsClientError

func (o *GetServiceCatalogConfigForbidden) IsClientError() bool

IsClientError returns true when this get service catalog config forbidden response has a 4xx status code

func (*GetServiceCatalogConfigForbidden) IsCode

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

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

func (*GetServiceCatalogConfigForbidden) IsRedirect

func (o *GetServiceCatalogConfigForbidden) IsRedirect() bool

IsRedirect returns true when this get service catalog config forbidden response has a 3xx status code

func (*GetServiceCatalogConfigForbidden) IsServerError

func (o *GetServiceCatalogConfigForbidden) IsServerError() bool

IsServerError returns true when this get service catalog config forbidden response has a 5xx status code

func (*GetServiceCatalogConfigForbidden) IsSuccess

func (o *GetServiceCatalogConfigForbidden) IsSuccess() bool

IsSuccess returns true when this get service catalog config forbidden response has a 2xx status code

func (*GetServiceCatalogConfigForbidden) String

type GetServiceCatalogConfigNotFound

type GetServiceCatalogConfigNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewGetServiceCatalogConfigNotFound

func NewGetServiceCatalogConfigNotFound() *GetServiceCatalogConfigNotFound

NewGetServiceCatalogConfigNotFound creates a GetServiceCatalogConfigNotFound with default headers values

func (*GetServiceCatalogConfigNotFound) Code

Code gets the status code for the get service catalog config not found response

func (*GetServiceCatalogConfigNotFound) Error

func (*GetServiceCatalogConfigNotFound) GetPayload

func (*GetServiceCatalogConfigNotFound) IsClientError

func (o *GetServiceCatalogConfigNotFound) IsClientError() bool

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

func (*GetServiceCatalogConfigNotFound) IsCode

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

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

func (*GetServiceCatalogConfigNotFound) IsRedirect

func (o *GetServiceCatalogConfigNotFound) IsRedirect() bool

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

func (*GetServiceCatalogConfigNotFound) IsServerError

func (o *GetServiceCatalogConfigNotFound) IsServerError() bool

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

func (*GetServiceCatalogConfigNotFound) IsSuccess

func (o *GetServiceCatalogConfigNotFound) IsSuccess() bool

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

func (*GetServiceCatalogConfigNotFound) String

type GetServiceCatalogConfigOK

type GetServiceCatalogConfigOK struct {
	Payload *GetServiceCatalogConfigOKBody
}

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

The config of the service catalog.

func NewGetServiceCatalogConfigOK

func NewGetServiceCatalogConfigOK() *GetServiceCatalogConfigOK

NewGetServiceCatalogConfigOK creates a GetServiceCatalogConfigOK with default headers values

func (*GetServiceCatalogConfigOK) Code

func (o *GetServiceCatalogConfigOK) Code() int

Code gets the status code for the get service catalog config o k response

func (*GetServiceCatalogConfigOK) Error

func (o *GetServiceCatalogConfigOK) Error() string

func (*GetServiceCatalogConfigOK) GetPayload

func (*GetServiceCatalogConfigOK) IsClientError

func (o *GetServiceCatalogConfigOK) IsClientError() bool

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

func (*GetServiceCatalogConfigOK) IsCode

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

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

func (*GetServiceCatalogConfigOK) IsRedirect

func (o *GetServiceCatalogConfigOK) IsRedirect() bool

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

func (*GetServiceCatalogConfigOK) IsServerError

func (o *GetServiceCatalogConfigOK) IsServerError() bool

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

func (*GetServiceCatalogConfigOK) IsSuccess

func (o *GetServiceCatalogConfigOK) IsSuccess() bool

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

func (*GetServiceCatalogConfigOK) String

func (o *GetServiceCatalogConfigOK) String() string

type GetServiceCatalogConfigOKBody

type GetServiceCatalogConfigOKBody struct {

	// data
	// Required: true
	Data models.ServiceCatalogConfigs `json:"data"`
}

GetServiceCatalogConfigOKBody get service catalog config o k body swagger:model GetServiceCatalogConfigOKBody

func (*GetServiceCatalogConfigOKBody) ContextValidate

func (o *GetServiceCatalogConfigOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get service catalog config o k body based on the context it is used

func (*GetServiceCatalogConfigOKBody) MarshalBinary

func (o *GetServiceCatalogConfigOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetServiceCatalogConfigOKBody) UnmarshalBinary

func (o *GetServiceCatalogConfigOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetServiceCatalogConfigOKBody) Validate

func (o *GetServiceCatalogConfigOKBody) Validate(formats strfmt.Registry) error

Validate validates this get service catalog config o k body

type GetServiceCatalogConfigParams

type GetServiceCatalogConfigParams struct {

	/* ComponentCanonical.

	   A canonical of a component.
	*/
	ComponentCanonical *string

	/* ComponentName.

	   A name of a component.
	*/
	ComponentName *string

	/* EnvironmentCanonical.

	   A list of environments' canonical to filter from
	*/
	EnvironmentCanonical *string

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ProjectCanonical.

	   A list of projects' canonical to filter from
	*/
	ProjectCanonical *string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

	/* UseCase.

	   A use case of a stack to be selectd from the stack config
	*/
	UseCase *string

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

GetServiceCatalogConfigParams contains all the parameters to send to the API endpoint

for the get service catalog config operation.

Typically these are written to a http.Request.

func NewGetServiceCatalogConfigParams

func NewGetServiceCatalogConfigParams() *GetServiceCatalogConfigParams

NewGetServiceCatalogConfigParams creates a new GetServiceCatalogConfigParams 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 NewGetServiceCatalogConfigParamsWithContext

func NewGetServiceCatalogConfigParamsWithContext(ctx context.Context) *GetServiceCatalogConfigParams

NewGetServiceCatalogConfigParamsWithContext creates a new GetServiceCatalogConfigParams object with the ability to set a context for a request.

func NewGetServiceCatalogConfigParamsWithHTTPClient

func NewGetServiceCatalogConfigParamsWithHTTPClient(client *http.Client) *GetServiceCatalogConfigParams

NewGetServiceCatalogConfigParamsWithHTTPClient creates a new GetServiceCatalogConfigParams object with the ability to set a custom HTTPClient for a request.

func NewGetServiceCatalogConfigParamsWithTimeout

func NewGetServiceCatalogConfigParamsWithTimeout(timeout time.Duration) *GetServiceCatalogConfigParams

NewGetServiceCatalogConfigParamsWithTimeout creates a new GetServiceCatalogConfigParams object with the ability to set a timeout on a request.

func (*GetServiceCatalogConfigParams) SetComponentCanonical

func (o *GetServiceCatalogConfigParams) SetComponentCanonical(componentCanonical *string)

SetComponentCanonical adds the componentCanonical to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetComponentName

func (o *GetServiceCatalogConfigParams) SetComponentName(componentName *string)

SetComponentName adds the componentName to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetContext

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

SetContext adds the context to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetDefaults

func (o *GetServiceCatalogConfigParams) SetDefaults()

SetDefaults hydrates default values in the get service catalog config params (not the query body).

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

func (*GetServiceCatalogConfigParams) SetEnvironmentCanonical

func (o *GetServiceCatalogConfigParams) SetEnvironmentCanonical(environmentCanonical *string)

SetEnvironmentCanonical adds the environmentCanonical to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetOrganizationCanonical

func (o *GetServiceCatalogConfigParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetProjectCanonical

func (o *GetServiceCatalogConfigParams) SetProjectCanonical(projectCanonical *string)

SetProjectCanonical adds the projectCanonical to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetServiceCatalogRef

func (o *GetServiceCatalogConfigParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetTimeout

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

SetTimeout adds the timeout to the get service catalog config params

func (*GetServiceCatalogConfigParams) SetUseCase

func (o *GetServiceCatalogConfigParams) SetUseCase(useCase *string)

SetUseCase adds the useCase to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithComponentCanonical

func (o *GetServiceCatalogConfigParams) WithComponentCanonical(componentCanonical *string) *GetServiceCatalogConfigParams

WithComponentCanonical adds the componentCanonical to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithComponentName

func (o *GetServiceCatalogConfigParams) WithComponentName(componentName *string) *GetServiceCatalogConfigParams

WithComponentName adds the componentName to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithContext

WithContext adds the context to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithDefaults

WithDefaults hydrates default values in the get service catalog config params (not the query body).

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

func (*GetServiceCatalogConfigParams) WithEnvironmentCanonical

func (o *GetServiceCatalogConfigParams) WithEnvironmentCanonical(environmentCanonical *string) *GetServiceCatalogConfigParams

WithEnvironmentCanonical adds the environmentCanonical to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithOrganizationCanonical

func (o *GetServiceCatalogConfigParams) WithOrganizationCanonical(organizationCanonical string) *GetServiceCatalogConfigParams

WithOrganizationCanonical adds the organizationCanonical to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithProjectCanonical

func (o *GetServiceCatalogConfigParams) WithProjectCanonical(projectCanonical *string) *GetServiceCatalogConfigParams

WithProjectCanonical adds the projectCanonical to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithServiceCatalogRef

func (o *GetServiceCatalogConfigParams) WithServiceCatalogRef(serviceCatalogRef string) *GetServiceCatalogConfigParams

WithServiceCatalogRef adds the serviceCatalogRef to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithTimeout

WithTimeout adds the timeout to the get service catalog config params

func (*GetServiceCatalogConfigParams) WithUseCase

WithUseCase adds the useCase to the get service catalog config params

func (*GetServiceCatalogConfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServiceCatalogConfigReader

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

GetServiceCatalogConfigReader is a Reader for the GetServiceCatalogConfig structure.

func (*GetServiceCatalogConfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetServiceCatalogDefault

type GetServiceCatalogDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

GetServiceCatalogDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewGetServiceCatalogDefault

func NewGetServiceCatalogDefault(code int) *GetServiceCatalogDefault

NewGetServiceCatalogDefault creates a GetServiceCatalogDefault with default headers values

func (*GetServiceCatalogDefault) Code

func (o *GetServiceCatalogDefault) Code() int

Code gets the status code for the get service catalog default response

func (*GetServiceCatalogDefault) Error

func (o *GetServiceCatalogDefault) Error() string

func (*GetServiceCatalogDefault) GetPayload

func (o *GetServiceCatalogDefault) GetPayload() *models.ErrorPayload

func (*GetServiceCatalogDefault) IsClientError

func (o *GetServiceCatalogDefault) IsClientError() bool

IsClientError returns true when this get service catalog default response has a 4xx status code

func (*GetServiceCatalogDefault) IsCode

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

IsCode returns true when this get service catalog default response a status code equal to that given

func (*GetServiceCatalogDefault) IsRedirect

func (o *GetServiceCatalogDefault) IsRedirect() bool

IsRedirect returns true when this get service catalog default response has a 3xx status code

func (*GetServiceCatalogDefault) IsServerError

func (o *GetServiceCatalogDefault) IsServerError() bool

IsServerError returns true when this get service catalog default response has a 5xx status code

func (*GetServiceCatalogDefault) IsSuccess

func (o *GetServiceCatalogDefault) IsSuccess() bool

IsSuccess returns true when this get service catalog default response has a 2xx status code

func (*GetServiceCatalogDefault) String

func (o *GetServiceCatalogDefault) String() string

type GetServiceCatalogForbidden

type GetServiceCatalogForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewGetServiceCatalogForbidden

func NewGetServiceCatalogForbidden() *GetServiceCatalogForbidden

NewGetServiceCatalogForbidden creates a GetServiceCatalogForbidden with default headers values

func (*GetServiceCatalogForbidden) Code

func (o *GetServiceCatalogForbidden) Code() int

Code gets the status code for the get service catalog forbidden response

func (*GetServiceCatalogForbidden) Error

func (*GetServiceCatalogForbidden) GetPayload

func (*GetServiceCatalogForbidden) IsClientError

func (o *GetServiceCatalogForbidden) IsClientError() bool

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

func (*GetServiceCatalogForbidden) IsCode

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

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

func (*GetServiceCatalogForbidden) IsRedirect

func (o *GetServiceCatalogForbidden) IsRedirect() bool

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

func (*GetServiceCatalogForbidden) IsServerError

func (o *GetServiceCatalogForbidden) IsServerError() bool

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

func (*GetServiceCatalogForbidden) IsSuccess

func (o *GetServiceCatalogForbidden) IsSuccess() bool

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

func (*GetServiceCatalogForbidden) String

func (o *GetServiceCatalogForbidden) String() string

type GetServiceCatalogNotFound

type GetServiceCatalogNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewGetServiceCatalogNotFound

func NewGetServiceCatalogNotFound() *GetServiceCatalogNotFound

NewGetServiceCatalogNotFound creates a GetServiceCatalogNotFound with default headers values

func (*GetServiceCatalogNotFound) Code

func (o *GetServiceCatalogNotFound) Code() int

Code gets the status code for the get service catalog not found response

func (*GetServiceCatalogNotFound) Error

func (o *GetServiceCatalogNotFound) Error() string

func (*GetServiceCatalogNotFound) GetPayload

func (*GetServiceCatalogNotFound) IsClientError

func (o *GetServiceCatalogNotFound) IsClientError() bool

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

func (*GetServiceCatalogNotFound) IsCode

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

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

func (*GetServiceCatalogNotFound) IsRedirect

func (o *GetServiceCatalogNotFound) IsRedirect() bool

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

func (*GetServiceCatalogNotFound) IsServerError

func (o *GetServiceCatalogNotFound) IsServerError() bool

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

func (*GetServiceCatalogNotFound) IsSuccess

func (o *GetServiceCatalogNotFound) IsSuccess() bool

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

func (*GetServiceCatalogNotFound) String

func (o *GetServiceCatalogNotFound) String() string

type GetServiceCatalogOK

type GetServiceCatalogOK struct {
	Payload *GetServiceCatalogOKBody
}

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

The information of the service catalog.

func NewGetServiceCatalogOK

func NewGetServiceCatalogOK() *GetServiceCatalogOK

NewGetServiceCatalogOK creates a GetServiceCatalogOK with default headers values

func (*GetServiceCatalogOK) Code

func (o *GetServiceCatalogOK) Code() int

Code gets the status code for the get service catalog o k response

func (*GetServiceCatalogOK) Error

func (o *GetServiceCatalogOK) Error() string

func (*GetServiceCatalogOK) GetPayload

func (*GetServiceCatalogOK) IsClientError

func (o *GetServiceCatalogOK) IsClientError() bool

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

func (*GetServiceCatalogOK) IsCode

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

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

func (*GetServiceCatalogOK) IsRedirect

func (o *GetServiceCatalogOK) IsRedirect() bool

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

func (*GetServiceCatalogOK) IsServerError

func (o *GetServiceCatalogOK) IsServerError() bool

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

func (*GetServiceCatalogOK) IsSuccess

func (o *GetServiceCatalogOK) IsSuccess() bool

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

func (*GetServiceCatalogOK) String

func (o *GetServiceCatalogOK) String() string

type GetServiceCatalogOKBody

type GetServiceCatalogOKBody struct {

	// data
	// Required: true
	Data *models.ServiceCatalog `json:"data"`
}

GetServiceCatalogOKBody get service catalog o k body swagger:model GetServiceCatalogOKBody

func (*GetServiceCatalogOKBody) ContextValidate

func (o *GetServiceCatalogOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get service catalog o k body based on the context it is used

func (*GetServiceCatalogOKBody) MarshalBinary

func (o *GetServiceCatalogOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetServiceCatalogOKBody) UnmarshalBinary

func (o *GetServiceCatalogOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetServiceCatalogOKBody) Validate

func (o *GetServiceCatalogOKBody) Validate(formats strfmt.Registry) error

Validate validates this get service catalog o k body

type GetServiceCatalogParams

type GetServiceCatalogParams struct {

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

GetServiceCatalogParams contains all the parameters to send to the API endpoint

for the get service catalog operation.

Typically these are written to a http.Request.

func NewGetServiceCatalogParams

func NewGetServiceCatalogParams() *GetServiceCatalogParams

NewGetServiceCatalogParams creates a new GetServiceCatalogParams 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 NewGetServiceCatalogParamsWithContext

func NewGetServiceCatalogParamsWithContext(ctx context.Context) *GetServiceCatalogParams

NewGetServiceCatalogParamsWithContext creates a new GetServiceCatalogParams object with the ability to set a context for a request.

func NewGetServiceCatalogParamsWithHTTPClient

func NewGetServiceCatalogParamsWithHTTPClient(client *http.Client) *GetServiceCatalogParams

NewGetServiceCatalogParamsWithHTTPClient creates a new GetServiceCatalogParams object with the ability to set a custom HTTPClient for a request.

func NewGetServiceCatalogParamsWithTimeout

func NewGetServiceCatalogParamsWithTimeout(timeout time.Duration) *GetServiceCatalogParams

NewGetServiceCatalogParamsWithTimeout creates a new GetServiceCatalogParams object with the ability to set a timeout on a request.

func (*GetServiceCatalogParams) SetContext

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

SetContext adds the context to the get service catalog params

func (*GetServiceCatalogParams) SetDefaults

func (o *GetServiceCatalogParams) SetDefaults()

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

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

func (*GetServiceCatalogParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get service catalog params

func (*GetServiceCatalogParams) SetOrganizationCanonical

func (o *GetServiceCatalogParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the get service catalog params

func (*GetServiceCatalogParams) SetServiceCatalogRef

func (o *GetServiceCatalogParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the get service catalog params

func (*GetServiceCatalogParams) SetTimeout

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

SetTimeout adds the timeout to the get service catalog params

func (*GetServiceCatalogParams) WithContext

WithContext adds the context to the get service catalog params

func (*GetServiceCatalogParams) WithDefaults

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

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

func (*GetServiceCatalogParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get service catalog params

func (*GetServiceCatalogParams) WithOrganizationCanonical

func (o *GetServiceCatalogParams) WithOrganizationCanonical(organizationCanonical string) *GetServiceCatalogParams

WithOrganizationCanonical adds the organizationCanonical to the get service catalog params

func (*GetServiceCatalogParams) WithServiceCatalogRef

func (o *GetServiceCatalogParams) WithServiceCatalogRef(serviceCatalogRef string) *GetServiceCatalogParams

WithServiceCatalogRef adds the serviceCatalogRef to the get service catalog params

func (*GetServiceCatalogParams) WithTimeout

WithTimeout adds the timeout to the get service catalog params

func (*GetServiceCatalogParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServiceCatalogReader

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

GetServiceCatalogReader is a Reader for the GetServiceCatalog structure.

func (*GetServiceCatalogReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetServiceCatalogTerraformDefault

type GetServiceCatalogTerraformDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

GetServiceCatalogTerraformDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewGetServiceCatalogTerraformDefault

func NewGetServiceCatalogTerraformDefault(code int) *GetServiceCatalogTerraformDefault

NewGetServiceCatalogTerraformDefault creates a GetServiceCatalogTerraformDefault with default headers values

func (*GetServiceCatalogTerraformDefault) Code

Code gets the status code for the get service catalog terraform default response

func (*GetServiceCatalogTerraformDefault) Error

func (*GetServiceCatalogTerraformDefault) GetPayload

func (*GetServiceCatalogTerraformDefault) IsClientError

func (o *GetServiceCatalogTerraformDefault) IsClientError() bool

IsClientError returns true when this get service catalog terraform default response has a 4xx status code

func (*GetServiceCatalogTerraformDefault) IsCode

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

IsCode returns true when this get service catalog terraform default response a status code equal to that given

func (*GetServiceCatalogTerraformDefault) IsRedirect

func (o *GetServiceCatalogTerraformDefault) IsRedirect() bool

IsRedirect returns true when this get service catalog terraform default response has a 3xx status code

func (*GetServiceCatalogTerraformDefault) IsServerError

func (o *GetServiceCatalogTerraformDefault) IsServerError() bool

IsServerError returns true when this get service catalog terraform default response has a 5xx status code

func (*GetServiceCatalogTerraformDefault) IsSuccess

func (o *GetServiceCatalogTerraformDefault) IsSuccess() bool

IsSuccess returns true when this get service catalog terraform default response has a 2xx status code

func (*GetServiceCatalogTerraformDefault) String

type GetServiceCatalogTerraformDiagramDefault

type GetServiceCatalogTerraformDiagramDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

GetServiceCatalogTerraformDiagramDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewGetServiceCatalogTerraformDiagramDefault

func NewGetServiceCatalogTerraformDiagramDefault(code int) *GetServiceCatalogTerraformDiagramDefault

NewGetServiceCatalogTerraformDiagramDefault creates a GetServiceCatalogTerraformDiagramDefault with default headers values

func (*GetServiceCatalogTerraformDiagramDefault) Code

Code gets the status code for the get service catalog terraform diagram default response

func (*GetServiceCatalogTerraformDiagramDefault) Error

func (*GetServiceCatalogTerraformDiagramDefault) GetPayload

func (*GetServiceCatalogTerraformDiagramDefault) IsClientError

IsClientError returns true when this get service catalog terraform diagram default response has a 4xx status code

func (*GetServiceCatalogTerraformDiagramDefault) IsCode

IsCode returns true when this get service catalog terraform diagram default response a status code equal to that given

func (*GetServiceCatalogTerraformDiagramDefault) IsRedirect

IsRedirect returns true when this get service catalog terraform diagram default response has a 3xx status code

func (*GetServiceCatalogTerraformDiagramDefault) IsServerError

IsServerError returns true when this get service catalog terraform diagram default response has a 5xx status code

func (*GetServiceCatalogTerraformDiagramDefault) IsSuccess

IsSuccess returns true when this get service catalog terraform diagram default response has a 2xx status code

func (*GetServiceCatalogTerraformDiagramDefault) String

type GetServiceCatalogTerraformDiagramForbidden

type GetServiceCatalogTerraformDiagramForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewGetServiceCatalogTerraformDiagramForbidden

func NewGetServiceCatalogTerraformDiagramForbidden() *GetServiceCatalogTerraformDiagramForbidden

NewGetServiceCatalogTerraformDiagramForbidden creates a GetServiceCatalogTerraformDiagramForbidden with default headers values

func (*GetServiceCatalogTerraformDiagramForbidden) Code

Code gets the status code for the get service catalog terraform diagram forbidden response

func (*GetServiceCatalogTerraformDiagramForbidden) Error

func (*GetServiceCatalogTerraformDiagramForbidden) GetPayload

func (*GetServiceCatalogTerraformDiagramForbidden) IsClientError

IsClientError returns true when this get service catalog terraform diagram forbidden response has a 4xx status code

func (*GetServiceCatalogTerraformDiagramForbidden) IsCode

IsCode returns true when this get service catalog terraform diagram forbidden response a status code equal to that given

func (*GetServiceCatalogTerraformDiagramForbidden) IsRedirect

IsRedirect returns true when this get service catalog terraform diagram forbidden response has a 3xx status code

func (*GetServiceCatalogTerraformDiagramForbidden) IsServerError

IsServerError returns true when this get service catalog terraform diagram forbidden response has a 5xx status code

func (*GetServiceCatalogTerraformDiagramForbidden) IsSuccess

IsSuccess returns true when this get service catalog terraform diagram forbidden response has a 2xx status code

func (*GetServiceCatalogTerraformDiagramForbidden) String

type GetServiceCatalogTerraformDiagramNotFound

type GetServiceCatalogTerraformDiagramNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewGetServiceCatalogTerraformDiagramNotFound

func NewGetServiceCatalogTerraformDiagramNotFound() *GetServiceCatalogTerraformDiagramNotFound

NewGetServiceCatalogTerraformDiagramNotFound creates a GetServiceCatalogTerraformDiagramNotFound with default headers values

func (*GetServiceCatalogTerraformDiagramNotFound) Code

Code gets the status code for the get service catalog terraform diagram not found response

func (*GetServiceCatalogTerraformDiagramNotFound) Error

func (*GetServiceCatalogTerraformDiagramNotFound) GetPayload

func (*GetServiceCatalogTerraformDiagramNotFound) IsClientError

IsClientError returns true when this get service catalog terraform diagram not found response has a 4xx status code

func (*GetServiceCatalogTerraformDiagramNotFound) IsCode

IsCode returns true when this get service catalog terraform diagram not found response a status code equal to that given

func (*GetServiceCatalogTerraformDiagramNotFound) IsRedirect

IsRedirect returns true when this get service catalog terraform diagram not found response has a 3xx status code

func (*GetServiceCatalogTerraformDiagramNotFound) IsServerError

IsServerError returns true when this get service catalog terraform diagram not found response has a 5xx status code

func (*GetServiceCatalogTerraformDiagramNotFound) IsSuccess

IsSuccess returns true when this get service catalog terraform diagram not found response has a 2xx status code

func (*GetServiceCatalogTerraformDiagramNotFound) String

type GetServiceCatalogTerraformDiagramOK

type GetServiceCatalogTerraformDiagramOK struct {
	Payload *GetServiceCatalogTerraformDiagramOKBody
}

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

The information of Terraform Diagram

func NewGetServiceCatalogTerraformDiagramOK

func NewGetServiceCatalogTerraformDiagramOK() *GetServiceCatalogTerraformDiagramOK

NewGetServiceCatalogTerraformDiagramOK creates a GetServiceCatalogTerraformDiagramOK with default headers values

func (*GetServiceCatalogTerraformDiagramOK) Code

Code gets the status code for the get service catalog terraform diagram o k response

func (*GetServiceCatalogTerraformDiagramOK) Error

func (*GetServiceCatalogTerraformDiagramOK) GetPayload

func (*GetServiceCatalogTerraformDiagramOK) IsClientError

func (o *GetServiceCatalogTerraformDiagramOK) IsClientError() bool

IsClientError returns true when this get service catalog terraform diagram o k response has a 4xx status code

func (*GetServiceCatalogTerraformDiagramOK) IsCode

IsCode returns true when this get service catalog terraform diagram o k response a status code equal to that given

func (*GetServiceCatalogTerraformDiagramOK) IsRedirect

func (o *GetServiceCatalogTerraformDiagramOK) IsRedirect() bool

IsRedirect returns true when this get service catalog terraform diagram o k response has a 3xx status code

func (*GetServiceCatalogTerraformDiagramOK) IsServerError

func (o *GetServiceCatalogTerraformDiagramOK) IsServerError() bool

IsServerError returns true when this get service catalog terraform diagram o k response has a 5xx status code

func (*GetServiceCatalogTerraformDiagramOK) IsSuccess

IsSuccess returns true when this get service catalog terraform diagram o k response has a 2xx status code

func (*GetServiceCatalogTerraformDiagramOK) String

type GetServiceCatalogTerraformDiagramOKBody

type GetServiceCatalogTerraformDiagramOKBody struct {

	// created at
	// Minimum: 0
	CreatedAt *uint64 `json:"created_at,omitempty"`

	// data
	// Required: true
	Data models.TerraformJSONDiagram `json:"data"`

	// updated at
	// Minimum: 0
	UpdatedAt *uint64 `json:"updated_at,omitempty"`
}

GetServiceCatalogTerraformDiagramOKBody get service catalog terraform diagram o k body swagger:model GetServiceCatalogTerraformDiagramOKBody

func (*GetServiceCatalogTerraformDiagramOKBody) ContextValidate

ContextValidate validates this get service catalog terraform diagram o k body based on context it is used

func (*GetServiceCatalogTerraformDiagramOKBody) MarshalBinary

func (o *GetServiceCatalogTerraformDiagramOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetServiceCatalogTerraformDiagramOKBody) UnmarshalBinary

func (o *GetServiceCatalogTerraformDiagramOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetServiceCatalogTerraformDiagramOKBody) Validate

Validate validates this get service catalog terraform diagram o k body

type GetServiceCatalogTerraformDiagramParams

type GetServiceCatalogTerraformDiagramParams struct {

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

GetServiceCatalogTerraformDiagramParams contains all the parameters to send to the API endpoint

for the get service catalog terraform diagram operation.

Typically these are written to a http.Request.

func NewGetServiceCatalogTerraformDiagramParams

func NewGetServiceCatalogTerraformDiagramParams() *GetServiceCatalogTerraformDiagramParams

NewGetServiceCatalogTerraformDiagramParams creates a new GetServiceCatalogTerraformDiagramParams 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 NewGetServiceCatalogTerraformDiagramParamsWithContext

func NewGetServiceCatalogTerraformDiagramParamsWithContext(ctx context.Context) *GetServiceCatalogTerraformDiagramParams

NewGetServiceCatalogTerraformDiagramParamsWithContext creates a new GetServiceCatalogTerraformDiagramParams object with the ability to set a context for a request.

func NewGetServiceCatalogTerraformDiagramParamsWithHTTPClient

func NewGetServiceCatalogTerraformDiagramParamsWithHTTPClient(client *http.Client) *GetServiceCatalogTerraformDiagramParams

NewGetServiceCatalogTerraformDiagramParamsWithHTTPClient creates a new GetServiceCatalogTerraformDiagramParams object with the ability to set a custom HTTPClient for a request.

func NewGetServiceCatalogTerraformDiagramParamsWithTimeout

func NewGetServiceCatalogTerraformDiagramParamsWithTimeout(timeout time.Duration) *GetServiceCatalogTerraformDiagramParams

NewGetServiceCatalogTerraformDiagramParamsWithTimeout creates a new GetServiceCatalogTerraformDiagramParams object with the ability to set a timeout on a request.

func (*GetServiceCatalogTerraformDiagramParams) SetContext

SetContext adds the context to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) SetDefaults

func (o *GetServiceCatalogTerraformDiagramParams) SetDefaults()

SetDefaults hydrates default values in the get service catalog terraform diagram params (not the query body).

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

func (*GetServiceCatalogTerraformDiagramParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) SetOrganizationCanonical

func (o *GetServiceCatalogTerraformDiagramParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) SetServiceCatalogRef

func (o *GetServiceCatalogTerraformDiagramParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) SetTimeout

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

SetTimeout adds the timeout to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) WithContext

WithContext adds the context to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) WithDefaults

WithDefaults hydrates default values in the get service catalog terraform diagram params (not the query body).

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

func (*GetServiceCatalogTerraformDiagramParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) WithOrganizationCanonical

func (o *GetServiceCatalogTerraformDiagramParams) WithOrganizationCanonical(organizationCanonical string) *GetServiceCatalogTerraformDiagramParams

WithOrganizationCanonical adds the organizationCanonical to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) WithServiceCatalogRef

func (o *GetServiceCatalogTerraformDiagramParams) WithServiceCatalogRef(serviceCatalogRef string) *GetServiceCatalogTerraformDiagramParams

WithServiceCatalogRef adds the serviceCatalogRef to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) WithTimeout

WithTimeout adds the timeout to the get service catalog terraform diagram params

func (*GetServiceCatalogTerraformDiagramParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServiceCatalogTerraformDiagramReader

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

GetServiceCatalogTerraformDiagramReader is a Reader for the GetServiceCatalogTerraformDiagram structure.

func (*GetServiceCatalogTerraformDiagramReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetServiceCatalogTerraformForbidden

type GetServiceCatalogTerraformForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewGetServiceCatalogTerraformForbidden

func NewGetServiceCatalogTerraformForbidden() *GetServiceCatalogTerraformForbidden

NewGetServiceCatalogTerraformForbidden creates a GetServiceCatalogTerraformForbidden with default headers values

func (*GetServiceCatalogTerraformForbidden) Code

Code gets the status code for the get service catalog terraform forbidden response

func (*GetServiceCatalogTerraformForbidden) Error

func (*GetServiceCatalogTerraformForbidden) GetPayload

func (*GetServiceCatalogTerraformForbidden) IsClientError

func (o *GetServiceCatalogTerraformForbidden) IsClientError() bool

IsClientError returns true when this get service catalog terraform forbidden response has a 4xx status code

func (*GetServiceCatalogTerraformForbidden) IsCode

IsCode returns true when this get service catalog terraform forbidden response a status code equal to that given

func (*GetServiceCatalogTerraformForbidden) IsRedirect

func (o *GetServiceCatalogTerraformForbidden) IsRedirect() bool

IsRedirect returns true when this get service catalog terraform forbidden response has a 3xx status code

func (*GetServiceCatalogTerraformForbidden) IsServerError

func (o *GetServiceCatalogTerraformForbidden) IsServerError() bool

IsServerError returns true when this get service catalog terraform forbidden response has a 5xx status code

func (*GetServiceCatalogTerraformForbidden) IsSuccess

IsSuccess returns true when this get service catalog terraform forbidden response has a 2xx status code

func (*GetServiceCatalogTerraformForbidden) String

type GetServiceCatalogTerraformImageDefault

type GetServiceCatalogTerraformImageDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

GetServiceCatalogTerraformImageDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewGetServiceCatalogTerraformImageDefault

func NewGetServiceCatalogTerraformImageDefault(code int) *GetServiceCatalogTerraformImageDefault

NewGetServiceCatalogTerraformImageDefault creates a GetServiceCatalogTerraformImageDefault with default headers values

func (*GetServiceCatalogTerraformImageDefault) Code

Code gets the status code for the get service catalog terraform image default response

func (*GetServiceCatalogTerraformImageDefault) Error

func (*GetServiceCatalogTerraformImageDefault) GetPayload

func (*GetServiceCatalogTerraformImageDefault) IsClientError

func (o *GetServiceCatalogTerraformImageDefault) IsClientError() bool

IsClientError returns true when this get service catalog terraform image default response has a 4xx status code

func (*GetServiceCatalogTerraformImageDefault) IsCode

IsCode returns true when this get service catalog terraform image default response a status code equal to that given

func (*GetServiceCatalogTerraformImageDefault) IsRedirect

IsRedirect returns true when this get service catalog terraform image default response has a 3xx status code

func (*GetServiceCatalogTerraformImageDefault) IsServerError

func (o *GetServiceCatalogTerraformImageDefault) IsServerError() bool

IsServerError returns true when this get service catalog terraform image default response has a 5xx status code

func (*GetServiceCatalogTerraformImageDefault) IsSuccess

IsSuccess returns true when this get service catalog terraform image default response has a 2xx status code

func (*GetServiceCatalogTerraformImageDefault) String

type GetServiceCatalogTerraformImageForbidden

type GetServiceCatalogTerraformImageForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewGetServiceCatalogTerraformImageForbidden

func NewGetServiceCatalogTerraformImageForbidden() *GetServiceCatalogTerraformImageForbidden

NewGetServiceCatalogTerraformImageForbidden creates a GetServiceCatalogTerraformImageForbidden with default headers values

func (*GetServiceCatalogTerraformImageForbidden) Code

Code gets the status code for the get service catalog terraform image forbidden response

func (*GetServiceCatalogTerraformImageForbidden) Error

func (*GetServiceCatalogTerraformImageForbidden) GetPayload

func (*GetServiceCatalogTerraformImageForbidden) IsClientError

IsClientError returns true when this get service catalog terraform image forbidden response has a 4xx status code

func (*GetServiceCatalogTerraformImageForbidden) IsCode

IsCode returns true when this get service catalog terraform image forbidden response a status code equal to that given

func (*GetServiceCatalogTerraformImageForbidden) IsRedirect

IsRedirect returns true when this get service catalog terraform image forbidden response has a 3xx status code

func (*GetServiceCatalogTerraformImageForbidden) IsServerError

IsServerError returns true when this get service catalog terraform image forbidden response has a 5xx status code

func (*GetServiceCatalogTerraformImageForbidden) IsSuccess

IsSuccess returns true when this get service catalog terraform image forbidden response has a 2xx status code

func (*GetServiceCatalogTerraformImageForbidden) String

type GetServiceCatalogTerraformImageNotFound

type GetServiceCatalogTerraformImageNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewGetServiceCatalogTerraformImageNotFound

func NewGetServiceCatalogTerraformImageNotFound() *GetServiceCatalogTerraformImageNotFound

NewGetServiceCatalogTerraformImageNotFound creates a GetServiceCatalogTerraformImageNotFound with default headers values

func (*GetServiceCatalogTerraformImageNotFound) Code

Code gets the status code for the get service catalog terraform image not found response

func (*GetServiceCatalogTerraformImageNotFound) Error

func (*GetServiceCatalogTerraformImageNotFound) GetPayload

func (*GetServiceCatalogTerraformImageNotFound) IsClientError

func (o *GetServiceCatalogTerraformImageNotFound) IsClientError() bool

IsClientError returns true when this get service catalog terraform image not found response has a 4xx status code

func (*GetServiceCatalogTerraformImageNotFound) IsCode

IsCode returns true when this get service catalog terraform image not found response a status code equal to that given

func (*GetServiceCatalogTerraformImageNotFound) IsRedirect

IsRedirect returns true when this get service catalog terraform image not found response has a 3xx status code

func (*GetServiceCatalogTerraformImageNotFound) IsServerError

func (o *GetServiceCatalogTerraformImageNotFound) IsServerError() bool

IsServerError returns true when this get service catalog terraform image not found response has a 5xx status code

func (*GetServiceCatalogTerraformImageNotFound) IsSuccess

IsSuccess returns true when this get service catalog terraform image not found response has a 2xx status code

func (*GetServiceCatalogTerraformImageNotFound) String

type GetServiceCatalogTerraformImageOK

type GetServiceCatalogTerraformImageOK struct {
	Payload *GetServiceCatalogTerraformImageOKBody
}

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

The SC TF Image

func NewGetServiceCatalogTerraformImageOK

func NewGetServiceCatalogTerraformImageOK() *GetServiceCatalogTerraformImageOK

NewGetServiceCatalogTerraformImageOK creates a GetServiceCatalogTerraformImageOK with default headers values

func (*GetServiceCatalogTerraformImageOK) Code

Code gets the status code for the get service catalog terraform image o k response

func (*GetServiceCatalogTerraformImageOK) Error

func (*GetServiceCatalogTerraformImageOK) GetPayload

func (*GetServiceCatalogTerraformImageOK) IsClientError

func (o *GetServiceCatalogTerraformImageOK) IsClientError() bool

IsClientError returns true when this get service catalog terraform image o k response has a 4xx status code

func (*GetServiceCatalogTerraformImageOK) IsCode

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

IsCode returns true when this get service catalog terraform image o k response a status code equal to that given

func (*GetServiceCatalogTerraformImageOK) IsRedirect

func (o *GetServiceCatalogTerraformImageOK) IsRedirect() bool

IsRedirect returns true when this get service catalog terraform image o k response has a 3xx status code

func (*GetServiceCatalogTerraformImageOK) IsServerError

func (o *GetServiceCatalogTerraformImageOK) IsServerError() bool

IsServerError returns true when this get service catalog terraform image o k response has a 5xx status code

func (*GetServiceCatalogTerraformImageOK) IsSuccess

func (o *GetServiceCatalogTerraformImageOK) IsSuccess() bool

IsSuccess returns true when this get service catalog terraform image o k response has a 2xx status code

func (*GetServiceCatalogTerraformImageOK) String

type GetServiceCatalogTerraformImageOKBody

type GetServiceCatalogTerraformImageOKBody struct {

	// data
	// Required: true
	Data *models.TerraformImage `json:"data"`
}

GetServiceCatalogTerraformImageOKBody get service catalog terraform image o k body swagger:model GetServiceCatalogTerraformImageOKBody

func (*GetServiceCatalogTerraformImageOKBody) ContextValidate

func (o *GetServiceCatalogTerraformImageOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get service catalog terraform image o k body based on the context it is used

func (*GetServiceCatalogTerraformImageOKBody) MarshalBinary

func (o *GetServiceCatalogTerraformImageOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetServiceCatalogTerraformImageOKBody) UnmarshalBinary

func (o *GetServiceCatalogTerraformImageOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetServiceCatalogTerraformImageOKBody) Validate

Validate validates this get service catalog terraform image o k body

type GetServiceCatalogTerraformImageParams

type GetServiceCatalogTerraformImageParams struct {

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

GetServiceCatalogTerraformImageParams contains all the parameters to send to the API endpoint

for the get service catalog terraform image operation.

Typically these are written to a http.Request.

func NewGetServiceCatalogTerraformImageParams

func NewGetServiceCatalogTerraformImageParams() *GetServiceCatalogTerraformImageParams

NewGetServiceCatalogTerraformImageParams creates a new GetServiceCatalogTerraformImageParams 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 NewGetServiceCatalogTerraformImageParamsWithContext

func NewGetServiceCatalogTerraformImageParamsWithContext(ctx context.Context) *GetServiceCatalogTerraformImageParams

NewGetServiceCatalogTerraformImageParamsWithContext creates a new GetServiceCatalogTerraformImageParams object with the ability to set a context for a request.

func NewGetServiceCatalogTerraformImageParamsWithHTTPClient

func NewGetServiceCatalogTerraformImageParamsWithHTTPClient(client *http.Client) *GetServiceCatalogTerraformImageParams

NewGetServiceCatalogTerraformImageParamsWithHTTPClient creates a new GetServiceCatalogTerraformImageParams object with the ability to set a custom HTTPClient for a request.

func NewGetServiceCatalogTerraformImageParamsWithTimeout

func NewGetServiceCatalogTerraformImageParamsWithTimeout(timeout time.Duration) *GetServiceCatalogTerraformImageParams

NewGetServiceCatalogTerraformImageParamsWithTimeout creates a new GetServiceCatalogTerraformImageParams object with the ability to set a timeout on a request.

func (*GetServiceCatalogTerraformImageParams) SetContext

SetContext adds the context to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) SetDefaults

func (o *GetServiceCatalogTerraformImageParams) SetDefaults()

SetDefaults hydrates default values in the get service catalog terraform image params (not the query body).

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

func (*GetServiceCatalogTerraformImageParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) SetOrganizationCanonical

func (o *GetServiceCatalogTerraformImageParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) SetServiceCatalogRef

func (o *GetServiceCatalogTerraformImageParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) SetTimeout

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

SetTimeout adds the timeout to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) WithContext

WithContext adds the context to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) WithDefaults

WithDefaults hydrates default values in the get service catalog terraform image params (not the query body).

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

func (*GetServiceCatalogTerraformImageParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) WithOrganizationCanonical

func (o *GetServiceCatalogTerraformImageParams) WithOrganizationCanonical(organizationCanonical string) *GetServiceCatalogTerraformImageParams

WithOrganizationCanonical adds the organizationCanonical to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) WithServiceCatalogRef

func (o *GetServiceCatalogTerraformImageParams) WithServiceCatalogRef(serviceCatalogRef string) *GetServiceCatalogTerraformImageParams

WithServiceCatalogRef adds the serviceCatalogRef to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) WithTimeout

WithTimeout adds the timeout to the get service catalog terraform image params

func (*GetServiceCatalogTerraformImageParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServiceCatalogTerraformImageReader

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

GetServiceCatalogTerraformImageReader is a Reader for the GetServiceCatalogTerraformImage structure.

func (*GetServiceCatalogTerraformImageReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetServiceCatalogTerraformNotFound

type GetServiceCatalogTerraformNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewGetServiceCatalogTerraformNotFound

func NewGetServiceCatalogTerraformNotFound() *GetServiceCatalogTerraformNotFound

NewGetServiceCatalogTerraformNotFound creates a GetServiceCatalogTerraformNotFound with default headers values

func (*GetServiceCatalogTerraformNotFound) Code

Code gets the status code for the get service catalog terraform not found response

func (*GetServiceCatalogTerraformNotFound) Error

func (*GetServiceCatalogTerraformNotFound) GetPayload

func (*GetServiceCatalogTerraformNotFound) IsClientError

func (o *GetServiceCatalogTerraformNotFound) IsClientError() bool

IsClientError returns true when this get service catalog terraform not found response has a 4xx status code

func (*GetServiceCatalogTerraformNotFound) IsCode

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

func (*GetServiceCatalogTerraformNotFound) IsRedirect

func (o *GetServiceCatalogTerraformNotFound) IsRedirect() bool

IsRedirect returns true when this get service catalog terraform not found response has a 3xx status code

func (*GetServiceCatalogTerraformNotFound) IsServerError

func (o *GetServiceCatalogTerraformNotFound) IsServerError() bool

IsServerError returns true when this get service catalog terraform not found response has a 5xx status code

func (*GetServiceCatalogTerraformNotFound) IsSuccess

IsSuccess returns true when this get service catalog terraform not found response has a 2xx status code

func (*GetServiceCatalogTerraformNotFound) String

type GetServiceCatalogTerraformOK

type GetServiceCatalogTerraformOK struct {
	Payload *GetServiceCatalogTerraformOKBody
}

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

The information of Terraform

func NewGetServiceCatalogTerraformOK

func NewGetServiceCatalogTerraformOK() *GetServiceCatalogTerraformOK

NewGetServiceCatalogTerraformOK creates a GetServiceCatalogTerraformOK with default headers values

func (*GetServiceCatalogTerraformOK) Code

Code gets the status code for the get service catalog terraform o k response

func (*GetServiceCatalogTerraformOK) Error

func (*GetServiceCatalogTerraformOK) GetPayload

func (*GetServiceCatalogTerraformOK) IsClientError

func (o *GetServiceCatalogTerraformOK) IsClientError() bool

IsClientError returns true when this get service catalog terraform o k response has a 4xx status code

func (*GetServiceCatalogTerraformOK) IsCode

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

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

func (*GetServiceCatalogTerraformOK) IsRedirect

func (o *GetServiceCatalogTerraformOK) IsRedirect() bool

IsRedirect returns true when this get service catalog terraform o k response has a 3xx status code

func (*GetServiceCatalogTerraformOK) IsServerError

func (o *GetServiceCatalogTerraformOK) IsServerError() bool

IsServerError returns true when this get service catalog terraform o k response has a 5xx status code

func (*GetServiceCatalogTerraformOK) IsSuccess

func (o *GetServiceCatalogTerraformOK) IsSuccess() bool

IsSuccess returns true when this get service catalog terraform o k response has a 2xx status code

func (*GetServiceCatalogTerraformOK) String

type GetServiceCatalogTerraformOKBody

type GetServiceCatalogTerraformOKBody struct {

	// data
	// Required: true
	Data *models.TerraformJSONConfig `json:"data"`
}

GetServiceCatalogTerraformOKBody get service catalog terraform o k body swagger:model GetServiceCatalogTerraformOKBody

func (*GetServiceCatalogTerraformOKBody) ContextValidate

func (o *GetServiceCatalogTerraformOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get service catalog terraform o k body based on the context it is used

func (*GetServiceCatalogTerraformOKBody) MarshalBinary

func (o *GetServiceCatalogTerraformOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetServiceCatalogTerraformOKBody) UnmarshalBinary

func (o *GetServiceCatalogTerraformOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetServiceCatalogTerraformOKBody) Validate

Validate validates this get service catalog terraform o k body

type GetServiceCatalogTerraformParams

type GetServiceCatalogTerraformParams struct {

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

	/* UseCaseCanonical.

	   A use case canonical
	*/
	UseCaseCanonical string

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

GetServiceCatalogTerraformParams contains all the parameters to send to the API endpoint

for the get service catalog terraform operation.

Typically these are written to a http.Request.

func NewGetServiceCatalogTerraformParams

func NewGetServiceCatalogTerraformParams() *GetServiceCatalogTerraformParams

NewGetServiceCatalogTerraformParams creates a new GetServiceCatalogTerraformParams 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 NewGetServiceCatalogTerraformParamsWithContext

func NewGetServiceCatalogTerraformParamsWithContext(ctx context.Context) *GetServiceCatalogTerraformParams

NewGetServiceCatalogTerraformParamsWithContext creates a new GetServiceCatalogTerraformParams object with the ability to set a context for a request.

func NewGetServiceCatalogTerraformParamsWithHTTPClient

func NewGetServiceCatalogTerraformParamsWithHTTPClient(client *http.Client) *GetServiceCatalogTerraformParams

NewGetServiceCatalogTerraformParamsWithHTTPClient creates a new GetServiceCatalogTerraformParams object with the ability to set a custom HTTPClient for a request.

func NewGetServiceCatalogTerraformParamsWithTimeout

func NewGetServiceCatalogTerraformParamsWithTimeout(timeout time.Duration) *GetServiceCatalogTerraformParams

NewGetServiceCatalogTerraformParamsWithTimeout creates a new GetServiceCatalogTerraformParams object with the ability to set a timeout on a request.

func (*GetServiceCatalogTerraformParams) SetContext

SetContext adds the context to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) SetDefaults

func (o *GetServiceCatalogTerraformParams) SetDefaults()

SetDefaults hydrates default values in the get service catalog terraform params (not the query body).

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

func (*GetServiceCatalogTerraformParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) SetOrganizationCanonical

func (o *GetServiceCatalogTerraformParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) SetServiceCatalogRef

func (o *GetServiceCatalogTerraformParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) SetTimeout

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

SetTimeout adds the timeout to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) SetUseCaseCanonical

func (o *GetServiceCatalogTerraformParams) SetUseCaseCanonical(useCaseCanonical string)

SetUseCaseCanonical adds the useCaseCanonical to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) WithContext

WithContext adds the context to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) WithDefaults

WithDefaults hydrates default values in the get service catalog terraform params (not the query body).

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

func (*GetServiceCatalogTerraformParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) WithOrganizationCanonical

func (o *GetServiceCatalogTerraformParams) WithOrganizationCanonical(organizationCanonical string) *GetServiceCatalogTerraformParams

WithOrganizationCanonical adds the organizationCanonical to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) WithServiceCatalogRef

func (o *GetServiceCatalogTerraformParams) WithServiceCatalogRef(serviceCatalogRef string) *GetServiceCatalogTerraformParams

WithServiceCatalogRef adds the serviceCatalogRef to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) WithTimeout

WithTimeout adds the timeout to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) WithUseCaseCanonical

func (o *GetServiceCatalogTerraformParams) WithUseCaseCanonical(useCaseCanonical string) *GetServiceCatalogTerraformParams

WithUseCaseCanonical adds the useCaseCanonical to the get service catalog terraform params

func (*GetServiceCatalogTerraformParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetServiceCatalogTerraformReader

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

GetServiceCatalogTerraformReader is a Reader for the GetServiceCatalogTerraform structure.

func (*GetServiceCatalogTerraformReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListServiceCatalogsDefault

type ListServiceCatalogsDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

ListServiceCatalogsDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewListServiceCatalogsDefault

func NewListServiceCatalogsDefault(code int) *ListServiceCatalogsDefault

NewListServiceCatalogsDefault creates a ListServiceCatalogsDefault with default headers values

func (*ListServiceCatalogsDefault) Code

func (o *ListServiceCatalogsDefault) Code() int

Code gets the status code for the list service catalogs default response

func (*ListServiceCatalogsDefault) Error

func (*ListServiceCatalogsDefault) GetPayload

func (*ListServiceCatalogsDefault) IsClientError

func (o *ListServiceCatalogsDefault) IsClientError() bool

IsClientError returns true when this list service catalogs default response has a 4xx status code

func (*ListServiceCatalogsDefault) IsCode

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

IsCode returns true when this list service catalogs default response a status code equal to that given

func (*ListServiceCatalogsDefault) IsRedirect

func (o *ListServiceCatalogsDefault) IsRedirect() bool

IsRedirect returns true when this list service catalogs default response has a 3xx status code

func (*ListServiceCatalogsDefault) IsServerError

func (o *ListServiceCatalogsDefault) IsServerError() bool

IsServerError returns true when this list service catalogs default response has a 5xx status code

func (*ListServiceCatalogsDefault) IsSuccess

func (o *ListServiceCatalogsDefault) IsSuccess() bool

IsSuccess returns true when this list service catalogs default response has a 2xx status code

func (*ListServiceCatalogsDefault) String

func (o *ListServiceCatalogsDefault) String() string

type ListServiceCatalogsForbidden

type ListServiceCatalogsForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewListServiceCatalogsForbidden

func NewListServiceCatalogsForbidden() *ListServiceCatalogsForbidden

NewListServiceCatalogsForbidden creates a ListServiceCatalogsForbidden with default headers values

func (*ListServiceCatalogsForbidden) Code

Code gets the status code for the list service catalogs forbidden response

func (*ListServiceCatalogsForbidden) Error

func (*ListServiceCatalogsForbidden) GetPayload

func (*ListServiceCatalogsForbidden) IsClientError

func (o *ListServiceCatalogsForbidden) IsClientError() bool

IsClientError returns true when this list service catalogs forbidden response has a 4xx status code

func (*ListServiceCatalogsForbidden) IsCode

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

IsCode returns true when this list service catalogs forbidden response a status code equal to that given

func (*ListServiceCatalogsForbidden) IsRedirect

func (o *ListServiceCatalogsForbidden) IsRedirect() bool

IsRedirect returns true when this list service catalogs forbidden response has a 3xx status code

func (*ListServiceCatalogsForbidden) IsServerError

func (o *ListServiceCatalogsForbidden) IsServerError() bool

IsServerError returns true when this list service catalogs forbidden response has a 5xx status code

func (*ListServiceCatalogsForbidden) IsSuccess

func (o *ListServiceCatalogsForbidden) IsSuccess() bool

IsSuccess returns true when this list service catalogs forbidden response has a 2xx status code

func (*ListServiceCatalogsForbidden) String

type ListServiceCatalogsOK

type ListServiceCatalogsOK struct {
	Payload *ListServiceCatalogsOKBody
}

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

List of the service catalogs.

func NewListServiceCatalogsOK

func NewListServiceCatalogsOK() *ListServiceCatalogsOK

NewListServiceCatalogsOK creates a ListServiceCatalogsOK with default headers values

func (*ListServiceCatalogsOK) Code

func (o *ListServiceCatalogsOK) Code() int

Code gets the status code for the list service catalogs o k response

func (*ListServiceCatalogsOK) Error

func (o *ListServiceCatalogsOK) Error() string

func (*ListServiceCatalogsOK) GetPayload

func (*ListServiceCatalogsOK) IsClientError

func (o *ListServiceCatalogsOK) IsClientError() bool

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

func (*ListServiceCatalogsOK) IsCode

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

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

func (*ListServiceCatalogsOK) IsRedirect

func (o *ListServiceCatalogsOK) IsRedirect() bool

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

func (*ListServiceCatalogsOK) IsServerError

func (o *ListServiceCatalogsOK) IsServerError() bool

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

func (*ListServiceCatalogsOK) IsSuccess

func (o *ListServiceCatalogsOK) IsSuccess() bool

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

func (*ListServiceCatalogsOK) String

func (o *ListServiceCatalogsOK) String() string

type ListServiceCatalogsOKBody

type ListServiceCatalogsOKBody struct {

	// data
	// Required: true
	Data []*models.ServiceCatalog `json:"data"`

	// pagination
	// Required: true
	Pagination *models.Pagination `json:"pagination"`
}

ListServiceCatalogsOKBody list service catalogs o k body swagger:model ListServiceCatalogsOKBody

func (*ListServiceCatalogsOKBody) ContextValidate

func (o *ListServiceCatalogsOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list service catalogs o k body based on the context it is used

func (*ListServiceCatalogsOKBody) MarshalBinary

func (o *ListServiceCatalogsOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListServiceCatalogsOKBody) UnmarshalBinary

func (o *ListServiceCatalogsOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListServiceCatalogsOKBody) Validate

func (o *ListServiceCatalogsOKBody) Validate(formats strfmt.Registry) error

Validate validates this list service catalogs o k body

type ListServiceCatalogsParams

type ListServiceCatalogsParams struct {

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* PageIndex.

	   The page number to request. The first page is 1.

	   Format: uint32
	   Default: 1
	*/
	PageIndex *uint32

	/* PageSize.

	   The number of items at most which the response can have.

	   Format: uint32
	   Default: 1000
	*/
	PageSize *uint32

	/* ServiceCatalogOwn.

	   Filters the Service Catalogs to only show the ones owned by the User Organization

	*/
	ServiceCatalogOwn *bool

	/* ServiceCatalogTemplate.

	   Filters the Service Catalogs to only show the ones that are templates

	*/
	ServiceCatalogTemplate *bool

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

ListServiceCatalogsParams contains all the parameters to send to the API endpoint

for the list service catalogs operation.

Typically these are written to a http.Request.

func NewListServiceCatalogsParams

func NewListServiceCatalogsParams() *ListServiceCatalogsParams

NewListServiceCatalogsParams creates a new ListServiceCatalogsParams 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 NewListServiceCatalogsParamsWithContext

func NewListServiceCatalogsParamsWithContext(ctx context.Context) *ListServiceCatalogsParams

NewListServiceCatalogsParamsWithContext creates a new ListServiceCatalogsParams object with the ability to set a context for a request.

func NewListServiceCatalogsParamsWithHTTPClient

func NewListServiceCatalogsParamsWithHTTPClient(client *http.Client) *ListServiceCatalogsParams

NewListServiceCatalogsParamsWithHTTPClient creates a new ListServiceCatalogsParams object with the ability to set a custom HTTPClient for a request.

func NewListServiceCatalogsParamsWithTimeout

func NewListServiceCatalogsParamsWithTimeout(timeout time.Duration) *ListServiceCatalogsParams

NewListServiceCatalogsParamsWithTimeout creates a new ListServiceCatalogsParams object with the ability to set a timeout on a request.

func (*ListServiceCatalogsParams) SetContext

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

SetContext adds the context to the list service catalogs params

func (*ListServiceCatalogsParams) SetDefaults

func (o *ListServiceCatalogsParams) SetDefaults()

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

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

func (*ListServiceCatalogsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list service catalogs params

func (*ListServiceCatalogsParams) SetOrganizationCanonical

func (o *ListServiceCatalogsParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the list service catalogs params

func (*ListServiceCatalogsParams) SetPageIndex

func (o *ListServiceCatalogsParams) SetPageIndex(pageIndex *uint32)

SetPageIndex adds the pageIndex to the list service catalogs params

func (*ListServiceCatalogsParams) SetPageSize

func (o *ListServiceCatalogsParams) SetPageSize(pageSize *uint32)

SetPageSize adds the pageSize to the list service catalogs params

func (*ListServiceCatalogsParams) SetServiceCatalogOwn

func (o *ListServiceCatalogsParams) SetServiceCatalogOwn(serviceCatalogOwn *bool)

SetServiceCatalogOwn adds the serviceCatalogOwn to the list service catalogs params

func (*ListServiceCatalogsParams) SetServiceCatalogTemplate

func (o *ListServiceCatalogsParams) SetServiceCatalogTemplate(serviceCatalogTemplate *bool)

SetServiceCatalogTemplate adds the serviceCatalogTemplate to the list service catalogs params

func (*ListServiceCatalogsParams) SetTimeout

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

SetTimeout adds the timeout to the list service catalogs params

func (*ListServiceCatalogsParams) WithContext

WithContext adds the context to the list service catalogs params

func (*ListServiceCatalogsParams) WithDefaults

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

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

func (*ListServiceCatalogsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list service catalogs params

func (*ListServiceCatalogsParams) WithOrganizationCanonical

func (o *ListServiceCatalogsParams) WithOrganizationCanonical(organizationCanonical string) *ListServiceCatalogsParams

WithOrganizationCanonical adds the organizationCanonical to the list service catalogs params

func (*ListServiceCatalogsParams) WithPageIndex

func (o *ListServiceCatalogsParams) WithPageIndex(pageIndex *uint32) *ListServiceCatalogsParams

WithPageIndex adds the pageIndex to the list service catalogs params

func (*ListServiceCatalogsParams) WithPageSize

func (o *ListServiceCatalogsParams) WithPageSize(pageSize *uint32) *ListServiceCatalogsParams

WithPageSize adds the pageSize to the list service catalogs params

func (*ListServiceCatalogsParams) WithServiceCatalogOwn

func (o *ListServiceCatalogsParams) WithServiceCatalogOwn(serviceCatalogOwn *bool) *ListServiceCatalogsParams

WithServiceCatalogOwn adds the serviceCatalogOwn to the list service catalogs params

func (*ListServiceCatalogsParams) WithServiceCatalogTemplate

func (o *ListServiceCatalogsParams) WithServiceCatalogTemplate(serviceCatalogTemplate *bool) *ListServiceCatalogsParams

WithServiceCatalogTemplate adds the serviceCatalogTemplate to the list service catalogs params

func (*ListServiceCatalogsParams) WithTimeout

WithTimeout adds the timeout to the list service catalogs params

func (*ListServiceCatalogsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListServiceCatalogsReader

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

ListServiceCatalogsReader is a Reader for the ListServiceCatalogs structure.

func (*ListServiceCatalogsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceCatalogDefault

type UpdateServiceCatalogDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

UpdateServiceCatalogDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewUpdateServiceCatalogDefault

func NewUpdateServiceCatalogDefault(code int) *UpdateServiceCatalogDefault

NewUpdateServiceCatalogDefault creates a UpdateServiceCatalogDefault with default headers values

func (*UpdateServiceCatalogDefault) Code

func (o *UpdateServiceCatalogDefault) Code() int

Code gets the status code for the update service catalog default response

func (*UpdateServiceCatalogDefault) Error

func (*UpdateServiceCatalogDefault) GetPayload

func (*UpdateServiceCatalogDefault) IsClientError

func (o *UpdateServiceCatalogDefault) IsClientError() bool

IsClientError returns true when this update service catalog default response has a 4xx status code

func (*UpdateServiceCatalogDefault) IsCode

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

IsCode returns true when this update service catalog default response a status code equal to that given

func (*UpdateServiceCatalogDefault) IsRedirect

func (o *UpdateServiceCatalogDefault) IsRedirect() bool

IsRedirect returns true when this update service catalog default response has a 3xx status code

func (*UpdateServiceCatalogDefault) IsServerError

func (o *UpdateServiceCatalogDefault) IsServerError() bool

IsServerError returns true when this update service catalog default response has a 5xx status code

func (*UpdateServiceCatalogDefault) IsSuccess

func (o *UpdateServiceCatalogDefault) IsSuccess() bool

IsSuccess returns true when this update service catalog default response has a 2xx status code

func (*UpdateServiceCatalogDefault) String

func (o *UpdateServiceCatalogDefault) String() string

type UpdateServiceCatalogForbidden

type UpdateServiceCatalogForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewUpdateServiceCatalogForbidden

func NewUpdateServiceCatalogForbidden() *UpdateServiceCatalogForbidden

NewUpdateServiceCatalogForbidden creates a UpdateServiceCatalogForbidden with default headers values

func (*UpdateServiceCatalogForbidden) Code

Code gets the status code for the update service catalog forbidden response

func (*UpdateServiceCatalogForbidden) Error

func (*UpdateServiceCatalogForbidden) GetPayload

func (*UpdateServiceCatalogForbidden) IsClientError

func (o *UpdateServiceCatalogForbidden) IsClientError() bool

IsClientError returns true when this update service catalog forbidden response has a 4xx status code

func (*UpdateServiceCatalogForbidden) IsCode

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

IsCode returns true when this update service catalog forbidden response a status code equal to that given

func (*UpdateServiceCatalogForbidden) IsRedirect

func (o *UpdateServiceCatalogForbidden) IsRedirect() bool

IsRedirect returns true when this update service catalog forbidden response has a 3xx status code

func (*UpdateServiceCatalogForbidden) IsServerError

func (o *UpdateServiceCatalogForbidden) IsServerError() bool

IsServerError returns true when this update service catalog forbidden response has a 5xx status code

func (*UpdateServiceCatalogForbidden) IsSuccess

func (o *UpdateServiceCatalogForbidden) IsSuccess() bool

IsSuccess returns true when this update service catalog forbidden response has a 2xx status code

func (*UpdateServiceCatalogForbidden) String

type UpdateServiceCatalogNotFound

type UpdateServiceCatalogNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewUpdateServiceCatalogNotFound

func NewUpdateServiceCatalogNotFound() *UpdateServiceCatalogNotFound

NewUpdateServiceCatalogNotFound creates a UpdateServiceCatalogNotFound with default headers values

func (*UpdateServiceCatalogNotFound) Code

Code gets the status code for the update service catalog not found response

func (*UpdateServiceCatalogNotFound) Error

func (*UpdateServiceCatalogNotFound) GetPayload

func (*UpdateServiceCatalogNotFound) IsClientError

func (o *UpdateServiceCatalogNotFound) IsClientError() bool

IsClientError returns true when this update service catalog not found response has a 4xx status code

func (*UpdateServiceCatalogNotFound) IsCode

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

IsCode returns true when this update service catalog not found response a status code equal to that given

func (*UpdateServiceCatalogNotFound) IsRedirect

func (o *UpdateServiceCatalogNotFound) IsRedirect() bool

IsRedirect returns true when this update service catalog not found response has a 3xx status code

func (*UpdateServiceCatalogNotFound) IsServerError

func (o *UpdateServiceCatalogNotFound) IsServerError() bool

IsServerError returns true when this update service catalog not found response has a 5xx status code

func (*UpdateServiceCatalogNotFound) IsSuccess

func (o *UpdateServiceCatalogNotFound) IsSuccess() bool

IsSuccess returns true when this update service catalog not found response has a 2xx status code

func (*UpdateServiceCatalogNotFound) String

type UpdateServiceCatalogOK

type UpdateServiceCatalogOK struct {
	Payload *UpdateServiceCatalogOKBody
}

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

Updated the Service Catalog

func NewUpdateServiceCatalogOK

func NewUpdateServiceCatalogOK() *UpdateServiceCatalogOK

NewUpdateServiceCatalogOK creates a UpdateServiceCatalogOK with default headers values

func (*UpdateServiceCatalogOK) Code

func (o *UpdateServiceCatalogOK) Code() int

Code gets the status code for the update service catalog o k response

func (*UpdateServiceCatalogOK) Error

func (o *UpdateServiceCatalogOK) Error() string

func (*UpdateServiceCatalogOK) GetPayload

func (*UpdateServiceCatalogOK) IsClientError

func (o *UpdateServiceCatalogOK) IsClientError() bool

IsClientError returns true when this update service catalog o k response has a 4xx status code

func (*UpdateServiceCatalogOK) IsCode

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

IsCode returns true when this update service catalog o k response a status code equal to that given

func (*UpdateServiceCatalogOK) IsRedirect

func (o *UpdateServiceCatalogOK) IsRedirect() bool

IsRedirect returns true when this update service catalog o k response has a 3xx status code

func (*UpdateServiceCatalogOK) IsServerError

func (o *UpdateServiceCatalogOK) IsServerError() bool

IsServerError returns true when this update service catalog o k response has a 5xx status code

func (*UpdateServiceCatalogOK) IsSuccess

func (o *UpdateServiceCatalogOK) IsSuccess() bool

IsSuccess returns true when this update service catalog o k response has a 2xx status code

func (*UpdateServiceCatalogOK) String

func (o *UpdateServiceCatalogOK) String() string

type UpdateServiceCatalogOKBody

type UpdateServiceCatalogOKBody struct {

	// data
	// Required: true
	Data *models.ServiceCatalog `json:"data"`
}

UpdateServiceCatalogOKBody update service catalog o k body swagger:model UpdateServiceCatalogOKBody

func (*UpdateServiceCatalogOKBody) ContextValidate

func (o *UpdateServiceCatalogOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this update service catalog o k body based on the context it is used

func (*UpdateServiceCatalogOKBody) MarshalBinary

func (o *UpdateServiceCatalogOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*UpdateServiceCatalogOKBody) UnmarshalBinary

func (o *UpdateServiceCatalogOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*UpdateServiceCatalogOKBody) Validate

func (o *UpdateServiceCatalogOKBody) Validate(formats strfmt.Registry) error

Validate validates this update service catalog o k body

type UpdateServiceCatalogParams

type UpdateServiceCatalogParams struct {

	/* Body.

	   The information of the ServiceCatalog Terraform.
	*/
	Body *models.UpdateServiceCatalog

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

UpdateServiceCatalogParams contains all the parameters to send to the API endpoint

for the update service catalog operation.

Typically these are written to a http.Request.

func NewUpdateServiceCatalogParams

func NewUpdateServiceCatalogParams() *UpdateServiceCatalogParams

NewUpdateServiceCatalogParams creates a new UpdateServiceCatalogParams 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 NewUpdateServiceCatalogParamsWithContext

func NewUpdateServiceCatalogParamsWithContext(ctx context.Context) *UpdateServiceCatalogParams

NewUpdateServiceCatalogParamsWithContext creates a new UpdateServiceCatalogParams object with the ability to set a context for a request.

func NewUpdateServiceCatalogParamsWithHTTPClient

func NewUpdateServiceCatalogParamsWithHTTPClient(client *http.Client) *UpdateServiceCatalogParams

NewUpdateServiceCatalogParamsWithHTTPClient creates a new UpdateServiceCatalogParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateServiceCatalogParamsWithTimeout

func NewUpdateServiceCatalogParamsWithTimeout(timeout time.Duration) *UpdateServiceCatalogParams

NewUpdateServiceCatalogParamsWithTimeout creates a new UpdateServiceCatalogParams object with the ability to set a timeout on a request.

func (*UpdateServiceCatalogParams) SetBody

SetBody adds the body to the update service catalog params

func (*UpdateServiceCatalogParams) SetContext

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

SetContext adds the context to the update service catalog params

func (*UpdateServiceCatalogParams) SetDefaults

func (o *UpdateServiceCatalogParams) SetDefaults()

SetDefaults hydrates default values in the update service catalog params (not the query body).

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

func (*UpdateServiceCatalogParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update service catalog params

func (*UpdateServiceCatalogParams) SetOrganizationCanonical

func (o *UpdateServiceCatalogParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the update service catalog params

func (*UpdateServiceCatalogParams) SetServiceCatalogRef

func (o *UpdateServiceCatalogParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the update service catalog params

func (*UpdateServiceCatalogParams) SetTimeout

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

SetTimeout adds the timeout to the update service catalog params

func (*UpdateServiceCatalogParams) WithBody

WithBody adds the body to the update service catalog params

func (*UpdateServiceCatalogParams) WithContext

WithContext adds the context to the update service catalog params

func (*UpdateServiceCatalogParams) WithDefaults

WithDefaults hydrates default values in the update service catalog params (not the query body).

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

func (*UpdateServiceCatalogParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update service catalog params

func (*UpdateServiceCatalogParams) WithOrganizationCanonical

func (o *UpdateServiceCatalogParams) WithOrganizationCanonical(organizationCanonical string) *UpdateServiceCatalogParams

WithOrganizationCanonical adds the organizationCanonical to the update service catalog params

func (*UpdateServiceCatalogParams) WithServiceCatalogRef

func (o *UpdateServiceCatalogParams) WithServiceCatalogRef(serviceCatalogRef string) *UpdateServiceCatalogParams

WithServiceCatalogRef adds the serviceCatalogRef to the update service catalog params

func (*UpdateServiceCatalogParams) WithTimeout

WithTimeout adds the timeout to the update service catalog params

func (*UpdateServiceCatalogParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateServiceCatalogReader

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

UpdateServiceCatalogReader is a Reader for the UpdateServiceCatalog structure.

func (*UpdateServiceCatalogReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceCatalogTerraformDefault

type UpdateServiceCatalogTerraformDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

UpdateServiceCatalogTerraformDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewUpdateServiceCatalogTerraformDefault

func NewUpdateServiceCatalogTerraformDefault(code int) *UpdateServiceCatalogTerraformDefault

NewUpdateServiceCatalogTerraformDefault creates a UpdateServiceCatalogTerraformDefault with default headers values

func (*UpdateServiceCatalogTerraformDefault) Code

Code gets the status code for the update service catalog terraform default response

func (*UpdateServiceCatalogTerraformDefault) Error

func (*UpdateServiceCatalogTerraformDefault) GetPayload

func (*UpdateServiceCatalogTerraformDefault) IsClientError

func (o *UpdateServiceCatalogTerraformDefault) IsClientError() bool

IsClientError returns true when this update service catalog terraform default response has a 4xx status code

func (*UpdateServiceCatalogTerraformDefault) IsCode

IsCode returns true when this update service catalog terraform default response a status code equal to that given

func (*UpdateServiceCatalogTerraformDefault) IsRedirect

IsRedirect returns true when this update service catalog terraform default response has a 3xx status code

func (*UpdateServiceCatalogTerraformDefault) IsServerError

func (o *UpdateServiceCatalogTerraformDefault) IsServerError() bool

IsServerError returns true when this update service catalog terraform default response has a 5xx status code

func (*UpdateServiceCatalogTerraformDefault) IsSuccess

IsSuccess returns true when this update service catalog terraform default response has a 2xx status code

func (*UpdateServiceCatalogTerraformDefault) String

type UpdateServiceCatalogTerraformDiagramDefault

type UpdateServiceCatalogTerraformDiagramDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

UpdateServiceCatalogTerraformDiagramDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewUpdateServiceCatalogTerraformDiagramDefault

func NewUpdateServiceCatalogTerraformDiagramDefault(code int) *UpdateServiceCatalogTerraformDiagramDefault

NewUpdateServiceCatalogTerraformDiagramDefault creates a UpdateServiceCatalogTerraformDiagramDefault with default headers values

func (*UpdateServiceCatalogTerraformDiagramDefault) Code

Code gets the status code for the update service catalog terraform diagram default response

func (*UpdateServiceCatalogTerraformDiagramDefault) Error

func (*UpdateServiceCatalogTerraformDiagramDefault) GetPayload

func (*UpdateServiceCatalogTerraformDiagramDefault) IsClientError

IsClientError returns true when this update service catalog terraform diagram default response has a 4xx status code

func (*UpdateServiceCatalogTerraformDiagramDefault) IsCode

IsCode returns true when this update service catalog terraform diagram default response a status code equal to that given

func (*UpdateServiceCatalogTerraformDiagramDefault) IsRedirect

IsRedirect returns true when this update service catalog terraform diagram default response has a 3xx status code

func (*UpdateServiceCatalogTerraformDiagramDefault) IsServerError

IsServerError returns true when this update service catalog terraform diagram default response has a 5xx status code

func (*UpdateServiceCatalogTerraformDiagramDefault) IsSuccess

IsSuccess returns true when this update service catalog terraform diagram default response has a 2xx status code

func (*UpdateServiceCatalogTerraformDiagramDefault) String

type UpdateServiceCatalogTerraformDiagramForbidden

type UpdateServiceCatalogTerraformDiagramForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewUpdateServiceCatalogTerraformDiagramForbidden

func NewUpdateServiceCatalogTerraformDiagramForbidden() *UpdateServiceCatalogTerraformDiagramForbidden

NewUpdateServiceCatalogTerraformDiagramForbidden creates a UpdateServiceCatalogTerraformDiagramForbidden with default headers values

func (*UpdateServiceCatalogTerraformDiagramForbidden) Code

Code gets the status code for the update service catalog terraform diagram forbidden response

func (*UpdateServiceCatalogTerraformDiagramForbidden) Error

func (*UpdateServiceCatalogTerraformDiagramForbidden) GetPayload

func (*UpdateServiceCatalogTerraformDiagramForbidden) IsClientError

IsClientError returns true when this update service catalog terraform diagram forbidden response has a 4xx status code

func (*UpdateServiceCatalogTerraformDiagramForbidden) IsCode

IsCode returns true when this update service catalog terraform diagram forbidden response a status code equal to that given

func (*UpdateServiceCatalogTerraformDiagramForbidden) IsRedirect

IsRedirect returns true when this update service catalog terraform diagram forbidden response has a 3xx status code

func (*UpdateServiceCatalogTerraformDiagramForbidden) IsServerError

IsServerError returns true when this update service catalog terraform diagram forbidden response has a 5xx status code

func (*UpdateServiceCatalogTerraformDiagramForbidden) IsSuccess

IsSuccess returns true when this update service catalog terraform diagram forbidden response has a 2xx status code

func (*UpdateServiceCatalogTerraformDiagramForbidden) String

type UpdateServiceCatalogTerraformDiagramNoContent

type UpdateServiceCatalogTerraformDiagramNoContent struct {
}

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

Configuration has been updated

func NewUpdateServiceCatalogTerraformDiagramNoContent

func NewUpdateServiceCatalogTerraformDiagramNoContent() *UpdateServiceCatalogTerraformDiagramNoContent

NewUpdateServiceCatalogTerraformDiagramNoContent creates a UpdateServiceCatalogTerraformDiagramNoContent with default headers values

func (*UpdateServiceCatalogTerraformDiagramNoContent) Code

Code gets the status code for the update service catalog terraform diagram no content response

func (*UpdateServiceCatalogTerraformDiagramNoContent) Error

func (*UpdateServiceCatalogTerraformDiagramNoContent) IsClientError

IsClientError returns true when this update service catalog terraform diagram no content response has a 4xx status code

func (*UpdateServiceCatalogTerraformDiagramNoContent) IsCode

IsCode returns true when this update service catalog terraform diagram no content response a status code equal to that given

func (*UpdateServiceCatalogTerraformDiagramNoContent) IsRedirect

IsRedirect returns true when this update service catalog terraform diagram no content response has a 3xx status code

func (*UpdateServiceCatalogTerraformDiagramNoContent) IsServerError

IsServerError returns true when this update service catalog terraform diagram no content response has a 5xx status code

func (*UpdateServiceCatalogTerraformDiagramNoContent) IsSuccess

IsSuccess returns true when this update service catalog terraform diagram no content response has a 2xx status code

func (*UpdateServiceCatalogTerraformDiagramNoContent) String

type UpdateServiceCatalogTerraformDiagramNotFound

type UpdateServiceCatalogTerraformDiagramNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewUpdateServiceCatalogTerraformDiagramNotFound

func NewUpdateServiceCatalogTerraformDiagramNotFound() *UpdateServiceCatalogTerraformDiagramNotFound

NewUpdateServiceCatalogTerraformDiagramNotFound creates a UpdateServiceCatalogTerraformDiagramNotFound with default headers values

func (*UpdateServiceCatalogTerraformDiagramNotFound) Code

Code gets the status code for the update service catalog terraform diagram not found response

func (*UpdateServiceCatalogTerraformDiagramNotFound) Error

func (*UpdateServiceCatalogTerraformDiagramNotFound) GetPayload

func (*UpdateServiceCatalogTerraformDiagramNotFound) IsClientError

IsClientError returns true when this update service catalog terraform diagram not found response has a 4xx status code

func (*UpdateServiceCatalogTerraformDiagramNotFound) IsCode

IsCode returns true when this update service catalog terraform diagram not found response a status code equal to that given

func (*UpdateServiceCatalogTerraformDiagramNotFound) IsRedirect

IsRedirect returns true when this update service catalog terraform diagram not found response has a 3xx status code

func (*UpdateServiceCatalogTerraformDiagramNotFound) IsServerError

IsServerError returns true when this update service catalog terraform diagram not found response has a 5xx status code

func (*UpdateServiceCatalogTerraformDiagramNotFound) IsSuccess

IsSuccess returns true when this update service catalog terraform diagram not found response has a 2xx status code

func (*UpdateServiceCatalogTerraformDiagramNotFound) String

type UpdateServiceCatalogTerraformDiagramParams

type UpdateServiceCatalogTerraformDiagramParams struct {

	/* Body.

	   The information of the ServiceCatalog Terraform Diagram
	*/
	Body models.TerraformJSONDiagram

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

UpdateServiceCatalogTerraformDiagramParams contains all the parameters to send to the API endpoint

for the update service catalog terraform diagram operation.

Typically these are written to a http.Request.

func NewUpdateServiceCatalogTerraformDiagramParams

func NewUpdateServiceCatalogTerraformDiagramParams() *UpdateServiceCatalogTerraformDiagramParams

NewUpdateServiceCatalogTerraformDiagramParams creates a new UpdateServiceCatalogTerraformDiagramParams 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 NewUpdateServiceCatalogTerraformDiagramParamsWithContext

func NewUpdateServiceCatalogTerraformDiagramParamsWithContext(ctx context.Context) *UpdateServiceCatalogTerraformDiagramParams

NewUpdateServiceCatalogTerraformDiagramParamsWithContext creates a new UpdateServiceCatalogTerraformDiagramParams object with the ability to set a context for a request.

func NewUpdateServiceCatalogTerraformDiagramParamsWithHTTPClient

func NewUpdateServiceCatalogTerraformDiagramParamsWithHTTPClient(client *http.Client) *UpdateServiceCatalogTerraformDiagramParams

NewUpdateServiceCatalogTerraformDiagramParamsWithHTTPClient creates a new UpdateServiceCatalogTerraformDiagramParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateServiceCatalogTerraformDiagramParamsWithTimeout

func NewUpdateServiceCatalogTerraformDiagramParamsWithTimeout(timeout time.Duration) *UpdateServiceCatalogTerraformDiagramParams

NewUpdateServiceCatalogTerraformDiagramParamsWithTimeout creates a new UpdateServiceCatalogTerraformDiagramParams object with the ability to set a timeout on a request.

func (*UpdateServiceCatalogTerraformDiagramParams) SetBody

SetBody adds the body to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) SetContext

SetContext adds the context to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) SetDefaults

SetDefaults hydrates default values in the update service catalog terraform diagram params (not the query body).

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

func (*UpdateServiceCatalogTerraformDiagramParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) SetOrganizationCanonical

func (o *UpdateServiceCatalogTerraformDiagramParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) SetServiceCatalogRef

func (o *UpdateServiceCatalogTerraformDiagramParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) SetTimeout

SetTimeout adds the timeout to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) WithBody

WithBody adds the body to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) WithContext

WithContext adds the context to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) WithDefaults

WithDefaults hydrates default values in the update service catalog terraform diagram params (not the query body).

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

func (*UpdateServiceCatalogTerraformDiagramParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) WithOrganizationCanonical

func (o *UpdateServiceCatalogTerraformDiagramParams) WithOrganizationCanonical(organizationCanonical string) *UpdateServiceCatalogTerraformDiagramParams

WithOrganizationCanonical adds the organizationCanonical to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) WithServiceCatalogRef

WithServiceCatalogRef adds the serviceCatalogRef to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) WithTimeout

WithTimeout adds the timeout to the update service catalog terraform diagram params

func (*UpdateServiceCatalogTerraformDiagramParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateServiceCatalogTerraformDiagramReader

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

UpdateServiceCatalogTerraformDiagramReader is a Reader for the UpdateServiceCatalogTerraformDiagram structure.

func (*UpdateServiceCatalogTerraformDiagramReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceCatalogTerraformDiagramUnprocessableEntity

type UpdateServiceCatalogTerraformDiagramUnprocessableEntity struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

UpdateServiceCatalogTerraformDiagramUnprocessableEntity describes a response with status code 422, with default header values.

All the custom errors that are generated from the Cycloid API

func NewUpdateServiceCatalogTerraformDiagramUnprocessableEntity

func NewUpdateServiceCatalogTerraformDiagramUnprocessableEntity() *UpdateServiceCatalogTerraformDiagramUnprocessableEntity

NewUpdateServiceCatalogTerraformDiagramUnprocessableEntity creates a UpdateServiceCatalogTerraformDiagramUnprocessableEntity with default headers values

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) Code

Code gets the status code for the update service catalog terraform diagram unprocessable entity response

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) Error

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) GetPayload

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) IsClientError

IsClientError returns true when this update service catalog terraform diagram unprocessable entity response has a 4xx status code

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) IsCode

IsCode returns true when this update service catalog terraform diagram unprocessable entity response a status code equal to that given

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) IsRedirect

IsRedirect returns true when this update service catalog terraform diagram unprocessable entity response has a 3xx status code

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) IsServerError

IsServerError returns true when this update service catalog terraform diagram unprocessable entity response has a 5xx status code

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) IsSuccess

IsSuccess returns true when this update service catalog terraform diagram unprocessable entity response has a 2xx status code

func (*UpdateServiceCatalogTerraformDiagramUnprocessableEntity) String

type UpdateServiceCatalogTerraformForbidden

type UpdateServiceCatalogTerraformForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewUpdateServiceCatalogTerraformForbidden

func NewUpdateServiceCatalogTerraformForbidden() *UpdateServiceCatalogTerraformForbidden

NewUpdateServiceCatalogTerraformForbidden creates a UpdateServiceCatalogTerraformForbidden with default headers values

func (*UpdateServiceCatalogTerraformForbidden) Code

Code gets the status code for the update service catalog terraform forbidden response

func (*UpdateServiceCatalogTerraformForbidden) Error

func (*UpdateServiceCatalogTerraformForbidden) GetPayload

func (*UpdateServiceCatalogTerraformForbidden) IsClientError

func (o *UpdateServiceCatalogTerraformForbidden) IsClientError() bool

IsClientError returns true when this update service catalog terraform forbidden response has a 4xx status code

func (*UpdateServiceCatalogTerraformForbidden) IsCode

IsCode returns true when this update service catalog terraform forbidden response a status code equal to that given

func (*UpdateServiceCatalogTerraformForbidden) IsRedirect

IsRedirect returns true when this update service catalog terraform forbidden response has a 3xx status code

func (*UpdateServiceCatalogTerraformForbidden) IsServerError

func (o *UpdateServiceCatalogTerraformForbidden) IsServerError() bool

IsServerError returns true when this update service catalog terraform forbidden response has a 5xx status code

func (*UpdateServiceCatalogTerraformForbidden) IsSuccess

IsSuccess returns true when this update service catalog terraform forbidden response has a 2xx status code

func (*UpdateServiceCatalogTerraformForbidden) String

type UpdateServiceCatalogTerraformImageDefault

type UpdateServiceCatalogTerraformImageDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

UpdateServiceCatalogTerraformImageDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewUpdateServiceCatalogTerraformImageDefault

func NewUpdateServiceCatalogTerraformImageDefault(code int) *UpdateServiceCatalogTerraformImageDefault

NewUpdateServiceCatalogTerraformImageDefault creates a UpdateServiceCatalogTerraformImageDefault with default headers values

func (*UpdateServiceCatalogTerraformImageDefault) Code

Code gets the status code for the update service catalog terraform image default response

func (*UpdateServiceCatalogTerraformImageDefault) Error

func (*UpdateServiceCatalogTerraformImageDefault) GetPayload

func (*UpdateServiceCatalogTerraformImageDefault) IsClientError

IsClientError returns true when this update service catalog terraform image default response has a 4xx status code

func (*UpdateServiceCatalogTerraformImageDefault) IsCode

IsCode returns true when this update service catalog terraform image default response a status code equal to that given

func (*UpdateServiceCatalogTerraformImageDefault) IsRedirect

IsRedirect returns true when this update service catalog terraform image default response has a 3xx status code

func (*UpdateServiceCatalogTerraformImageDefault) IsServerError

IsServerError returns true when this update service catalog terraform image default response has a 5xx status code

func (*UpdateServiceCatalogTerraformImageDefault) IsSuccess

IsSuccess returns true when this update service catalog terraform image default response has a 2xx status code

func (*UpdateServiceCatalogTerraformImageDefault) String

type UpdateServiceCatalogTerraformImageForbidden

type UpdateServiceCatalogTerraformImageForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewUpdateServiceCatalogTerraformImageForbidden

func NewUpdateServiceCatalogTerraformImageForbidden() *UpdateServiceCatalogTerraformImageForbidden

NewUpdateServiceCatalogTerraformImageForbidden creates a UpdateServiceCatalogTerraformImageForbidden with default headers values

func (*UpdateServiceCatalogTerraformImageForbidden) Code

Code gets the status code for the update service catalog terraform image forbidden response

func (*UpdateServiceCatalogTerraformImageForbidden) Error

func (*UpdateServiceCatalogTerraformImageForbidden) GetPayload

func (*UpdateServiceCatalogTerraformImageForbidden) IsClientError

IsClientError returns true when this update service catalog terraform image forbidden response has a 4xx status code

func (*UpdateServiceCatalogTerraformImageForbidden) IsCode

IsCode returns true when this update service catalog terraform image forbidden response a status code equal to that given

func (*UpdateServiceCatalogTerraformImageForbidden) IsRedirect

IsRedirect returns true when this update service catalog terraform image forbidden response has a 3xx status code

func (*UpdateServiceCatalogTerraformImageForbidden) IsServerError

IsServerError returns true when this update service catalog terraform image forbidden response has a 5xx status code

func (*UpdateServiceCatalogTerraformImageForbidden) IsSuccess

IsSuccess returns true when this update service catalog terraform image forbidden response has a 2xx status code

func (*UpdateServiceCatalogTerraformImageForbidden) String

type UpdateServiceCatalogTerraformImageNoContent

type UpdateServiceCatalogTerraformImageNoContent struct {
}

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

Configuration has been updated

func NewUpdateServiceCatalogTerraformImageNoContent

func NewUpdateServiceCatalogTerraformImageNoContent() *UpdateServiceCatalogTerraformImageNoContent

NewUpdateServiceCatalogTerraformImageNoContent creates a UpdateServiceCatalogTerraformImageNoContent with default headers values

func (*UpdateServiceCatalogTerraformImageNoContent) Code

Code gets the status code for the update service catalog terraform image no content response

func (*UpdateServiceCatalogTerraformImageNoContent) Error

func (*UpdateServiceCatalogTerraformImageNoContent) IsClientError

IsClientError returns true when this update service catalog terraform image no content response has a 4xx status code

func (*UpdateServiceCatalogTerraformImageNoContent) IsCode

IsCode returns true when this update service catalog terraform image no content response a status code equal to that given

func (*UpdateServiceCatalogTerraformImageNoContent) IsRedirect

IsRedirect returns true when this update service catalog terraform image no content response has a 3xx status code

func (*UpdateServiceCatalogTerraformImageNoContent) IsServerError

IsServerError returns true when this update service catalog terraform image no content response has a 5xx status code

func (*UpdateServiceCatalogTerraformImageNoContent) IsSuccess

IsSuccess returns true when this update service catalog terraform image no content response has a 2xx status code

func (*UpdateServiceCatalogTerraformImageNoContent) String

type UpdateServiceCatalogTerraformImageParams

type UpdateServiceCatalogTerraformImageParams struct {

	/* Body.

	   The information of the ServiceCatalog Terraform Diagram
	*/
	Body *models.TerraformImage

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

UpdateServiceCatalogTerraformImageParams contains all the parameters to send to the API endpoint

for the update service catalog terraform image operation.

Typically these are written to a http.Request.

func NewUpdateServiceCatalogTerraformImageParams

func NewUpdateServiceCatalogTerraformImageParams() *UpdateServiceCatalogTerraformImageParams

NewUpdateServiceCatalogTerraformImageParams creates a new UpdateServiceCatalogTerraformImageParams 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 NewUpdateServiceCatalogTerraformImageParamsWithContext

func NewUpdateServiceCatalogTerraformImageParamsWithContext(ctx context.Context) *UpdateServiceCatalogTerraformImageParams

NewUpdateServiceCatalogTerraformImageParamsWithContext creates a new UpdateServiceCatalogTerraformImageParams object with the ability to set a context for a request.

func NewUpdateServiceCatalogTerraformImageParamsWithHTTPClient

func NewUpdateServiceCatalogTerraformImageParamsWithHTTPClient(client *http.Client) *UpdateServiceCatalogTerraformImageParams

NewUpdateServiceCatalogTerraformImageParamsWithHTTPClient creates a new UpdateServiceCatalogTerraformImageParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateServiceCatalogTerraformImageParamsWithTimeout

func NewUpdateServiceCatalogTerraformImageParamsWithTimeout(timeout time.Duration) *UpdateServiceCatalogTerraformImageParams

NewUpdateServiceCatalogTerraformImageParamsWithTimeout creates a new UpdateServiceCatalogTerraformImageParams object with the ability to set a timeout on a request.

func (*UpdateServiceCatalogTerraformImageParams) SetBody

SetBody adds the body to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) SetContext

SetContext adds the context to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) SetDefaults

SetDefaults hydrates default values in the update service catalog terraform image params (not the query body).

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

func (*UpdateServiceCatalogTerraformImageParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) SetOrganizationCanonical

func (o *UpdateServiceCatalogTerraformImageParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) SetServiceCatalogRef

func (o *UpdateServiceCatalogTerraformImageParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) SetTimeout

SetTimeout adds the timeout to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) WithBody

WithBody adds the body to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) WithContext

WithContext adds the context to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) WithDefaults

WithDefaults hydrates default values in the update service catalog terraform image params (not the query body).

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

func (*UpdateServiceCatalogTerraformImageParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) WithOrganizationCanonical

func (o *UpdateServiceCatalogTerraformImageParams) WithOrganizationCanonical(organizationCanonical string) *UpdateServiceCatalogTerraformImageParams

WithOrganizationCanonical adds the organizationCanonical to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) WithServiceCatalogRef

WithServiceCatalogRef adds the serviceCatalogRef to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) WithTimeout

WithTimeout adds the timeout to the update service catalog terraform image params

func (*UpdateServiceCatalogTerraformImageParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateServiceCatalogTerraformImageReader

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

UpdateServiceCatalogTerraformImageReader is a Reader for the UpdateServiceCatalogTerraformImage structure.

func (*UpdateServiceCatalogTerraformImageReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceCatalogTerraformImageUnprocessableEntity

type UpdateServiceCatalogTerraformImageUnprocessableEntity struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

UpdateServiceCatalogTerraformImageUnprocessableEntity describes a response with status code 422, with default header values.

All the custom errors that are generated from the Cycloid API

func NewUpdateServiceCatalogTerraformImageUnprocessableEntity

func NewUpdateServiceCatalogTerraformImageUnprocessableEntity() *UpdateServiceCatalogTerraformImageUnprocessableEntity

NewUpdateServiceCatalogTerraformImageUnprocessableEntity creates a UpdateServiceCatalogTerraformImageUnprocessableEntity with default headers values

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) Code

Code gets the status code for the update service catalog terraform image unprocessable entity response

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) Error

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) GetPayload

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) IsClientError

IsClientError returns true when this update service catalog terraform image unprocessable entity response has a 4xx status code

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) IsCode

IsCode returns true when this update service catalog terraform image unprocessable entity response a status code equal to that given

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) IsRedirect

IsRedirect returns true when this update service catalog terraform image unprocessable entity response has a 3xx status code

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) IsServerError

IsServerError returns true when this update service catalog terraform image unprocessable entity response has a 5xx status code

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) IsSuccess

IsSuccess returns true when this update service catalog terraform image unprocessable entity response has a 2xx status code

func (*UpdateServiceCatalogTerraformImageUnprocessableEntity) String

type UpdateServiceCatalogTerraformNoContent

type UpdateServiceCatalogTerraformNoContent struct {
}

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

Configuration has been updated

func NewUpdateServiceCatalogTerraformNoContent

func NewUpdateServiceCatalogTerraformNoContent() *UpdateServiceCatalogTerraformNoContent

NewUpdateServiceCatalogTerraformNoContent creates a UpdateServiceCatalogTerraformNoContent with default headers values

func (*UpdateServiceCatalogTerraformNoContent) Code

Code gets the status code for the update service catalog terraform no content response

func (*UpdateServiceCatalogTerraformNoContent) Error

func (*UpdateServiceCatalogTerraformNoContent) IsClientError

func (o *UpdateServiceCatalogTerraformNoContent) IsClientError() bool

IsClientError returns true when this update service catalog terraform no content response has a 4xx status code

func (*UpdateServiceCatalogTerraformNoContent) IsCode

IsCode returns true when this update service catalog terraform no content response a status code equal to that given

func (*UpdateServiceCatalogTerraformNoContent) IsRedirect

IsRedirect returns true when this update service catalog terraform no content response has a 3xx status code

func (*UpdateServiceCatalogTerraformNoContent) IsServerError

func (o *UpdateServiceCatalogTerraformNoContent) IsServerError() bool

IsServerError returns true when this update service catalog terraform no content response has a 5xx status code

func (*UpdateServiceCatalogTerraformNoContent) IsSuccess

IsSuccess returns true when this update service catalog terraform no content response has a 2xx status code

func (*UpdateServiceCatalogTerraformNoContent) String

type UpdateServiceCatalogTerraformNotFound

type UpdateServiceCatalogTerraformNotFound struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The response sent when any of the entities present in the path is not found.

func NewUpdateServiceCatalogTerraformNotFound

func NewUpdateServiceCatalogTerraformNotFound() *UpdateServiceCatalogTerraformNotFound

NewUpdateServiceCatalogTerraformNotFound creates a UpdateServiceCatalogTerraformNotFound with default headers values

func (*UpdateServiceCatalogTerraformNotFound) Code

Code gets the status code for the update service catalog terraform not found response

func (*UpdateServiceCatalogTerraformNotFound) Error

func (*UpdateServiceCatalogTerraformNotFound) GetPayload

func (*UpdateServiceCatalogTerraformNotFound) IsClientError

func (o *UpdateServiceCatalogTerraformNotFound) IsClientError() bool

IsClientError returns true when this update service catalog terraform not found response has a 4xx status code

func (*UpdateServiceCatalogTerraformNotFound) IsCode

IsCode returns true when this update service catalog terraform not found response a status code equal to that given

func (*UpdateServiceCatalogTerraformNotFound) IsRedirect

IsRedirect returns true when this update service catalog terraform not found response has a 3xx status code

func (*UpdateServiceCatalogTerraformNotFound) IsServerError

func (o *UpdateServiceCatalogTerraformNotFound) IsServerError() bool

IsServerError returns true when this update service catalog terraform not found response has a 5xx status code

func (*UpdateServiceCatalogTerraformNotFound) IsSuccess

IsSuccess returns true when this update service catalog terraform not found response has a 2xx status code

func (*UpdateServiceCatalogTerraformNotFound) String

type UpdateServiceCatalogTerraformParams

type UpdateServiceCatalogTerraformParams struct {

	/* Body.

	   The information of the ServiceCatalog Terraform.
	*/
	Body *models.TerraformJSONConfig

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

	/* UseCaseCanonical.

	   A use case canonical
	*/
	UseCaseCanonical string

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

UpdateServiceCatalogTerraformParams contains all the parameters to send to the API endpoint

for the update service catalog terraform operation.

Typically these are written to a http.Request.

func NewUpdateServiceCatalogTerraformParams

func NewUpdateServiceCatalogTerraformParams() *UpdateServiceCatalogTerraformParams

NewUpdateServiceCatalogTerraformParams creates a new UpdateServiceCatalogTerraformParams 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 NewUpdateServiceCatalogTerraformParamsWithContext

func NewUpdateServiceCatalogTerraformParamsWithContext(ctx context.Context) *UpdateServiceCatalogTerraformParams

NewUpdateServiceCatalogTerraformParamsWithContext creates a new UpdateServiceCatalogTerraformParams object with the ability to set a context for a request.

func NewUpdateServiceCatalogTerraformParamsWithHTTPClient

func NewUpdateServiceCatalogTerraformParamsWithHTTPClient(client *http.Client) *UpdateServiceCatalogTerraformParams

NewUpdateServiceCatalogTerraformParamsWithHTTPClient creates a new UpdateServiceCatalogTerraformParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateServiceCatalogTerraformParamsWithTimeout

func NewUpdateServiceCatalogTerraformParamsWithTimeout(timeout time.Duration) *UpdateServiceCatalogTerraformParams

NewUpdateServiceCatalogTerraformParamsWithTimeout creates a new UpdateServiceCatalogTerraformParams object with the ability to set a timeout on a request.

func (*UpdateServiceCatalogTerraformParams) SetBody

SetBody adds the body to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) SetContext

SetContext adds the context to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) SetDefaults

func (o *UpdateServiceCatalogTerraformParams) SetDefaults()

SetDefaults hydrates default values in the update service catalog terraform params (not the query body).

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

func (*UpdateServiceCatalogTerraformParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) SetOrganizationCanonical

func (o *UpdateServiceCatalogTerraformParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) SetServiceCatalogRef

func (o *UpdateServiceCatalogTerraformParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) SetTimeout

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

SetTimeout adds the timeout to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) SetUseCaseCanonical

func (o *UpdateServiceCatalogTerraformParams) SetUseCaseCanonical(useCaseCanonical string)

SetUseCaseCanonical adds the useCaseCanonical to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) WithBody

WithBody adds the body to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) WithContext

WithContext adds the context to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) WithDefaults

WithDefaults hydrates default values in the update service catalog terraform params (not the query body).

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

func (*UpdateServiceCatalogTerraformParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) WithOrganizationCanonical

func (o *UpdateServiceCatalogTerraformParams) WithOrganizationCanonical(organizationCanonical string) *UpdateServiceCatalogTerraformParams

WithOrganizationCanonical adds the organizationCanonical to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) WithServiceCatalogRef

func (o *UpdateServiceCatalogTerraformParams) WithServiceCatalogRef(serviceCatalogRef string) *UpdateServiceCatalogTerraformParams

WithServiceCatalogRef adds the serviceCatalogRef to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) WithTimeout

WithTimeout adds the timeout to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) WithUseCaseCanonical

func (o *UpdateServiceCatalogTerraformParams) WithUseCaseCanonical(useCaseCanonical string) *UpdateServiceCatalogTerraformParams

WithUseCaseCanonical adds the useCaseCanonical to the update service catalog terraform params

func (*UpdateServiceCatalogTerraformParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateServiceCatalogTerraformReader

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

UpdateServiceCatalogTerraformReader is a Reader for the UpdateServiceCatalogTerraform structure.

func (*UpdateServiceCatalogTerraformReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateServiceCatalogTerraformUnprocessableEntity

type UpdateServiceCatalogTerraformUnprocessableEntity struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

UpdateServiceCatalogTerraformUnprocessableEntity describes a response with status code 422, with default header values.

All the custom errors that are generated from the Cycloid API

func NewUpdateServiceCatalogTerraformUnprocessableEntity

func NewUpdateServiceCatalogTerraformUnprocessableEntity() *UpdateServiceCatalogTerraformUnprocessableEntity

NewUpdateServiceCatalogTerraformUnprocessableEntity creates a UpdateServiceCatalogTerraformUnprocessableEntity with default headers values

func (*UpdateServiceCatalogTerraformUnprocessableEntity) Code

Code gets the status code for the update service catalog terraform unprocessable entity response

func (*UpdateServiceCatalogTerraformUnprocessableEntity) Error

func (*UpdateServiceCatalogTerraformUnprocessableEntity) GetPayload

func (*UpdateServiceCatalogTerraformUnprocessableEntity) IsClientError

IsClientError returns true when this update service catalog terraform unprocessable entity response has a 4xx status code

func (*UpdateServiceCatalogTerraformUnprocessableEntity) IsCode

IsCode returns true when this update service catalog terraform unprocessable entity response a status code equal to that given

func (*UpdateServiceCatalogTerraformUnprocessableEntity) IsRedirect

IsRedirect returns true when this update service catalog terraform unprocessable entity response has a 3xx status code

func (*UpdateServiceCatalogTerraformUnprocessableEntity) IsServerError

IsServerError returns true when this update service catalog terraform unprocessable entity response has a 5xx status code

func (*UpdateServiceCatalogTerraformUnprocessableEntity) IsSuccess

IsSuccess returns true when this update service catalog terraform unprocessable entity response has a 2xx status code

func (*UpdateServiceCatalogTerraformUnprocessableEntity) String

type UpdateServiceCatalogUnprocessableEntity

type UpdateServiceCatalogUnprocessableEntity struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

UpdateServiceCatalogUnprocessableEntity describes a response with status code 422, with default header values.

All the custom errors that are generated from the Cycloid API

func NewUpdateServiceCatalogUnprocessableEntity

func NewUpdateServiceCatalogUnprocessableEntity() *UpdateServiceCatalogUnprocessableEntity

NewUpdateServiceCatalogUnprocessableEntity creates a UpdateServiceCatalogUnprocessableEntity with default headers values

func (*UpdateServiceCatalogUnprocessableEntity) Code

Code gets the status code for the update service catalog unprocessable entity response

func (*UpdateServiceCatalogUnprocessableEntity) Error

func (*UpdateServiceCatalogUnprocessableEntity) GetPayload

func (*UpdateServiceCatalogUnprocessableEntity) IsClientError

func (o *UpdateServiceCatalogUnprocessableEntity) IsClientError() bool

IsClientError returns true when this update service catalog unprocessable entity response has a 4xx status code

func (*UpdateServiceCatalogUnprocessableEntity) IsCode

IsCode returns true when this update service catalog unprocessable entity response a status code equal to that given

func (*UpdateServiceCatalogUnprocessableEntity) IsRedirect

IsRedirect returns true when this update service catalog unprocessable entity response has a 3xx status code

func (*UpdateServiceCatalogUnprocessableEntity) IsServerError

func (o *UpdateServiceCatalogUnprocessableEntity) IsServerError() bool

IsServerError returns true when this update service catalog unprocessable entity response has a 5xx status code

func (*UpdateServiceCatalogUnprocessableEntity) IsSuccess

IsSuccess returns true when this update service catalog unprocessable entity response has a 2xx status code

func (*UpdateServiceCatalogUnprocessableEntity) String

type ValidateServiceCatalogDependenciesDefault

type ValidateServiceCatalogDependenciesDefault struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
	// contains filtered or unexported fields
}

ValidateServiceCatalogDependenciesDefault describes a response with status code -1, with default header values.

The response sent when an unexpected error happened, as known as an internal server error.

func NewValidateServiceCatalogDependenciesDefault

func NewValidateServiceCatalogDependenciesDefault(code int) *ValidateServiceCatalogDependenciesDefault

NewValidateServiceCatalogDependenciesDefault creates a ValidateServiceCatalogDependenciesDefault with default headers values

func (*ValidateServiceCatalogDependenciesDefault) Code

Code gets the status code for the validate service catalog dependencies default response

func (*ValidateServiceCatalogDependenciesDefault) Error

func (*ValidateServiceCatalogDependenciesDefault) GetPayload

func (*ValidateServiceCatalogDependenciesDefault) IsClientError

IsClientError returns true when this validate service catalog dependencies default response has a 4xx status code

func (*ValidateServiceCatalogDependenciesDefault) IsCode

IsCode returns true when this validate service catalog dependencies default response a status code equal to that given

func (*ValidateServiceCatalogDependenciesDefault) IsRedirect

IsRedirect returns true when this validate service catalog dependencies default response has a 3xx status code

func (*ValidateServiceCatalogDependenciesDefault) IsServerError

IsServerError returns true when this validate service catalog dependencies default response has a 5xx status code

func (*ValidateServiceCatalogDependenciesDefault) IsSuccess

IsSuccess returns true when this validate service catalog dependencies default response has a 2xx status code

func (*ValidateServiceCatalogDependenciesDefault) String

type ValidateServiceCatalogDependenciesForbidden

type ValidateServiceCatalogDependenciesForbidden struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

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

The authenticated user cannot perform the operation because, it doesn't have permissions for such operation.

func NewValidateServiceCatalogDependenciesForbidden

func NewValidateServiceCatalogDependenciesForbidden() *ValidateServiceCatalogDependenciesForbidden

NewValidateServiceCatalogDependenciesForbidden creates a ValidateServiceCatalogDependenciesForbidden with default headers values

func (*ValidateServiceCatalogDependenciesForbidden) Code

Code gets the status code for the validate service catalog dependencies forbidden response

func (*ValidateServiceCatalogDependenciesForbidden) Error

func (*ValidateServiceCatalogDependenciesForbidden) GetPayload

func (*ValidateServiceCatalogDependenciesForbidden) IsClientError

IsClientError returns true when this validate service catalog dependencies forbidden response has a 4xx status code

func (*ValidateServiceCatalogDependenciesForbidden) IsCode

IsCode returns true when this validate service catalog dependencies forbidden response a status code equal to that given

func (*ValidateServiceCatalogDependenciesForbidden) IsRedirect

IsRedirect returns true when this validate service catalog dependencies forbidden response has a 3xx status code

func (*ValidateServiceCatalogDependenciesForbidden) IsServerError

IsServerError returns true when this validate service catalog dependencies forbidden response has a 5xx status code

func (*ValidateServiceCatalogDependenciesForbidden) IsSuccess

IsSuccess returns true when this validate service catalog dependencies forbidden response has a 2xx status code

func (*ValidateServiceCatalogDependenciesForbidden) String

type ValidateServiceCatalogDependenciesOK

type ValidateServiceCatalogDependenciesOK struct {
	Payload *ValidateServiceCatalogDependenciesOKBody
}

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

The result of the service catalog's dependencies validation

func NewValidateServiceCatalogDependenciesOK

func NewValidateServiceCatalogDependenciesOK() *ValidateServiceCatalogDependenciesOK

NewValidateServiceCatalogDependenciesOK creates a ValidateServiceCatalogDependenciesOK with default headers values

func (*ValidateServiceCatalogDependenciesOK) Code

Code gets the status code for the validate service catalog dependencies o k response

func (*ValidateServiceCatalogDependenciesOK) Error

func (*ValidateServiceCatalogDependenciesOK) GetPayload

func (*ValidateServiceCatalogDependenciesOK) IsClientError

func (o *ValidateServiceCatalogDependenciesOK) IsClientError() bool

IsClientError returns true when this validate service catalog dependencies o k response has a 4xx status code

func (*ValidateServiceCatalogDependenciesOK) IsCode

IsCode returns true when this validate service catalog dependencies o k response a status code equal to that given

func (*ValidateServiceCatalogDependenciesOK) IsRedirect

IsRedirect returns true when this validate service catalog dependencies o k response has a 3xx status code

func (*ValidateServiceCatalogDependenciesOK) IsServerError

func (o *ValidateServiceCatalogDependenciesOK) IsServerError() bool

IsServerError returns true when this validate service catalog dependencies o k response has a 5xx status code

func (*ValidateServiceCatalogDependenciesOK) IsSuccess

IsSuccess returns true when this validate service catalog dependencies o k response has a 2xx status code

func (*ValidateServiceCatalogDependenciesOK) String

type ValidateServiceCatalogDependenciesOKBody

type ValidateServiceCatalogDependenciesOKBody struct {

	// data
	// Required: true
	Data *models.ServiceCatalogDependenciesValidationResult `json:"data"`
}

ValidateServiceCatalogDependenciesOKBody validate service catalog dependencies o k body swagger:model ValidateServiceCatalogDependenciesOKBody

func (*ValidateServiceCatalogDependenciesOKBody) ContextValidate

ContextValidate validate this validate service catalog dependencies o k body based on the context it is used

func (*ValidateServiceCatalogDependenciesOKBody) MarshalBinary

func (o *ValidateServiceCatalogDependenciesOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ValidateServiceCatalogDependenciesOKBody) UnmarshalBinary

func (o *ValidateServiceCatalogDependenciesOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ValidateServiceCatalogDependenciesOKBody) Validate

Validate validates this validate service catalog dependencies o k body

type ValidateServiceCatalogDependenciesParams

type ValidateServiceCatalogDependenciesParams struct {

	/* OrganizationCanonical.

	   A canonical of an organization.
	*/
	OrganizationCanonical string

	/* ServiceCatalogRef.

	   A Service Catalog name
	*/
	ServiceCatalogRef string

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

ValidateServiceCatalogDependenciesParams contains all the parameters to send to the API endpoint

for the validate service catalog dependencies operation.

Typically these are written to a http.Request.

func NewValidateServiceCatalogDependenciesParams

func NewValidateServiceCatalogDependenciesParams() *ValidateServiceCatalogDependenciesParams

NewValidateServiceCatalogDependenciesParams creates a new ValidateServiceCatalogDependenciesParams 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 NewValidateServiceCatalogDependenciesParamsWithContext

func NewValidateServiceCatalogDependenciesParamsWithContext(ctx context.Context) *ValidateServiceCatalogDependenciesParams

NewValidateServiceCatalogDependenciesParamsWithContext creates a new ValidateServiceCatalogDependenciesParams object with the ability to set a context for a request.

func NewValidateServiceCatalogDependenciesParamsWithHTTPClient

func NewValidateServiceCatalogDependenciesParamsWithHTTPClient(client *http.Client) *ValidateServiceCatalogDependenciesParams

NewValidateServiceCatalogDependenciesParamsWithHTTPClient creates a new ValidateServiceCatalogDependenciesParams object with the ability to set a custom HTTPClient for a request.

func NewValidateServiceCatalogDependenciesParamsWithTimeout

func NewValidateServiceCatalogDependenciesParamsWithTimeout(timeout time.Duration) *ValidateServiceCatalogDependenciesParams

NewValidateServiceCatalogDependenciesParamsWithTimeout creates a new ValidateServiceCatalogDependenciesParams object with the ability to set a timeout on a request.

func (*ValidateServiceCatalogDependenciesParams) SetContext

SetContext adds the context to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) SetDefaults

SetDefaults hydrates default values in the validate service catalog dependencies params (not the query body).

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

func (*ValidateServiceCatalogDependenciesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) SetOrganizationCanonical

func (o *ValidateServiceCatalogDependenciesParams) SetOrganizationCanonical(organizationCanonical string)

SetOrganizationCanonical adds the organizationCanonical to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) SetServiceCatalogRef

func (o *ValidateServiceCatalogDependenciesParams) SetServiceCatalogRef(serviceCatalogRef string)

SetServiceCatalogRef adds the serviceCatalogRef to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) SetTimeout

SetTimeout adds the timeout to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) WithContext

WithContext adds the context to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) WithDefaults

WithDefaults hydrates default values in the validate service catalog dependencies params (not the query body).

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

func (*ValidateServiceCatalogDependenciesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) WithOrganizationCanonical

func (o *ValidateServiceCatalogDependenciesParams) WithOrganizationCanonical(organizationCanonical string) *ValidateServiceCatalogDependenciesParams

WithOrganizationCanonical adds the organizationCanonical to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) WithServiceCatalogRef

WithServiceCatalogRef adds the serviceCatalogRef to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) WithTimeout

WithTimeout adds the timeout to the validate service catalog dependencies params

func (*ValidateServiceCatalogDependenciesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ValidateServiceCatalogDependenciesReader

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

ValidateServiceCatalogDependenciesReader is a Reader for the ValidateServiceCatalogDependencies structure.

func (*ValidateServiceCatalogDependenciesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ValidateServiceCatalogDependenciesUnprocessableEntity

type ValidateServiceCatalogDependenciesUnprocessableEntity struct {

	/* The length of the response body in octets (8-bit bytes).

	   Format: uint64
	*/
	ContentLength uint64

	Payload *models.ErrorPayload
}

ValidateServiceCatalogDependenciesUnprocessableEntity describes a response with status code 422, with default header values.

All the custom errors that are generated from the Cycloid API

func NewValidateServiceCatalogDependenciesUnprocessableEntity

func NewValidateServiceCatalogDependenciesUnprocessableEntity() *ValidateServiceCatalogDependenciesUnprocessableEntity

NewValidateServiceCatalogDependenciesUnprocessableEntity creates a ValidateServiceCatalogDependenciesUnprocessableEntity with default headers values

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) Code

Code gets the status code for the validate service catalog dependencies unprocessable entity response

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) Error

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) GetPayload

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) IsClientError

IsClientError returns true when this validate service catalog dependencies unprocessable entity response has a 4xx status code

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) IsCode

IsCode returns true when this validate service catalog dependencies unprocessable entity response a status code equal to that given

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) IsRedirect

IsRedirect returns true when this validate service catalog dependencies unprocessable entity response has a 3xx status code

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) IsServerError

IsServerError returns true when this validate service catalog dependencies unprocessable entity response has a 5xx status code

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) IsSuccess

IsSuccess returns true when this validate service catalog dependencies unprocessable entity response has a 2xx status code

func (*ValidateServiceCatalogDependenciesUnprocessableEntity) String

Jump to

Keyboard shortcuts

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