vcf

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Aug 27, 2021 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for v c f API

func (*Client) CreateServiceCredentialsUsingPOST

func (a *Client) CreateServiceCredentialsUsingPOST(params *CreateServiceCredentialsUsingPOSTParams, opts ...ClientOption) (*CreateServiceCredentialsUsingPOSTOK, error)

CreateServiceCredentialsUsingPOST creates service credentials

func (*Client) DeleteServiceAccountUsingDELETE

func (a *Client) DeleteServiceAccountUsingDELETE(params *DeleteServiceAccountUsingDELETEParams, opts ...ClientOption) (*DeleteServiceAccountUsingDELETENoContent, error)

DeleteServiceAccountUsingDELETE deletes a service account

func (*Client) DeleteServiceCredentialUsingDELETE

func (a *Client) DeleteServiceCredentialUsingDELETE(params *DeleteServiceCredentialUsingDELETEParams, opts ...ClientOption) (*DeleteServiceCredentialUsingDELETENoContent, error)

DeleteServiceCredentialUsingDELETE deletes a service credential

func (*Client) EnumerateDomainsUsingPOST

func (a *Client) EnumerateDomainsUsingPOST(params *EnumerateDomainsUsingPOSTParams, opts ...ClientOption) (*EnumerateDomainsUsingPOSTOK, error)

EnumerateDomainsUsingPOST enumerates domains

func (*Client) GetDomainUsingGET

func (a *Client) GetDomainUsingGET(params *GetDomainUsingGETParams, opts ...ClientOption) (*GetDomainUsingGETOK, error)

GetDomainUsingGET gets domain details

func (*Client) GetDomainsUsingGET

func (a *Client) GetDomainsUsingGET(params *GetDomainsUsingGETParams, opts ...ClientOption) (*GetDomainsUsingGETOK, error)

GetDomainsUsingGET gets domains

func (*Client) PatchServiceAccountUsingPATCH

func (a *Client) PatchServiceAccountUsingPATCH(params *PatchServiceAccountUsingPATCHParams, opts ...ClientOption) (*PatchServiceAccountUsingPATCHOK, error)

PatchServiceAccountUsingPATCH patches service account

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption added in v0.2.20

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateServiceCredentialsUsingPOST(params *CreateServiceCredentialsUsingPOSTParams, opts ...ClientOption) (*CreateServiceCredentialsUsingPOSTOK, error)

	DeleteServiceAccountUsingDELETE(params *DeleteServiceAccountUsingDELETEParams, opts ...ClientOption) (*DeleteServiceAccountUsingDELETENoContent, error)

	DeleteServiceCredentialUsingDELETE(params *DeleteServiceCredentialUsingDELETEParams, opts ...ClientOption) (*DeleteServiceCredentialUsingDELETENoContent, error)

	EnumerateDomainsUsingPOST(params *EnumerateDomainsUsingPOSTParams, opts ...ClientOption) (*EnumerateDomainsUsingPOSTOK, error)

	GetDomainUsingGET(params *GetDomainUsingGETParams, opts ...ClientOption) (*GetDomainUsingGETOK, error)

	GetDomainsUsingGET(params *GetDomainsUsingGETParams, opts ...ClientOption) (*GetDomainsUsingGETOK, error)

	PatchServiceAccountUsingPATCH(params *PatchServiceAccountUsingPATCHParams, opts ...ClientOption) (*PatchServiceAccountUsingPATCHOK, 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 v c f API client.

type CreateServiceCredentialsUsingPOSTBadRequest

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

Bad Request

func NewCreateServiceCredentialsUsingPOSTBadRequest

func NewCreateServiceCredentialsUsingPOSTBadRequest() *CreateServiceCredentialsUsingPOSTBadRequest

NewCreateServiceCredentialsUsingPOSTBadRequest creates a CreateServiceCredentialsUsingPOSTBadRequest with default headers values

func (*CreateServiceCredentialsUsingPOSTBadRequest) Error

func (*CreateServiceCredentialsUsingPOSTBadRequest) GetPayload

type CreateServiceCredentialsUsingPOSTForbidden

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

Forbidden

func NewCreateServiceCredentialsUsingPOSTForbidden

func NewCreateServiceCredentialsUsingPOSTForbidden() *CreateServiceCredentialsUsingPOSTForbidden

NewCreateServiceCredentialsUsingPOSTForbidden creates a CreateServiceCredentialsUsingPOSTForbidden with default headers values

func (*CreateServiceCredentialsUsingPOSTForbidden) Error

type CreateServiceCredentialsUsingPOSTOK

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

Create Service credentials

func NewCreateServiceCredentialsUsingPOSTOK

func NewCreateServiceCredentialsUsingPOSTOK() *CreateServiceCredentialsUsingPOSTOK

NewCreateServiceCredentialsUsingPOSTOK creates a CreateServiceCredentialsUsingPOSTOK with default headers values

func (*CreateServiceCredentialsUsingPOSTOK) Error

func (*CreateServiceCredentialsUsingPOSTOK) GetPayload

type CreateServiceCredentialsUsingPOSTParams

type CreateServiceCredentialsUsingPOSTParams struct {

	/* DomainID.

	   domainId
	*/
	DomainID string

	/* IntegrationID.

	   integrationId
	*/
	IntegrationID string

	/* Request.

	   request
	*/
	Request *models.VcfCredentialRequests

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

CreateServiceCredentialsUsingPOSTParams contains all the parameters to send to the API endpoint

for the create service credentials using p o s t operation.

Typically these are written to a http.Request.

func NewCreateServiceCredentialsUsingPOSTParams

func NewCreateServiceCredentialsUsingPOSTParams() *CreateServiceCredentialsUsingPOSTParams

NewCreateServiceCredentialsUsingPOSTParams creates a new CreateServiceCredentialsUsingPOSTParams 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 NewCreateServiceCredentialsUsingPOSTParamsWithContext

func NewCreateServiceCredentialsUsingPOSTParamsWithContext(ctx context.Context) *CreateServiceCredentialsUsingPOSTParams

NewCreateServiceCredentialsUsingPOSTParamsWithContext creates a new CreateServiceCredentialsUsingPOSTParams object with the ability to set a context for a request.

func NewCreateServiceCredentialsUsingPOSTParamsWithHTTPClient

func NewCreateServiceCredentialsUsingPOSTParamsWithHTTPClient(client *http.Client) *CreateServiceCredentialsUsingPOSTParams

NewCreateServiceCredentialsUsingPOSTParamsWithHTTPClient creates a new CreateServiceCredentialsUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewCreateServiceCredentialsUsingPOSTParamsWithTimeout

func NewCreateServiceCredentialsUsingPOSTParamsWithTimeout(timeout time.Duration) *CreateServiceCredentialsUsingPOSTParams

NewCreateServiceCredentialsUsingPOSTParamsWithTimeout creates a new CreateServiceCredentialsUsingPOSTParams object with the ability to set a timeout on a request.

func (*CreateServiceCredentialsUsingPOSTParams) SetContext

SetContext adds the context to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) SetDefaults added in v0.2.20

func (o *CreateServiceCredentialsUsingPOSTParams) SetDefaults()

SetDefaults hydrates default values in the create service credentials using p o s t params (not the query body).

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

func (*CreateServiceCredentialsUsingPOSTParams) SetDomainID

func (o *CreateServiceCredentialsUsingPOSTParams) SetDomainID(domainID string)

SetDomainID adds the domainId to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) SetIntegrationID

func (o *CreateServiceCredentialsUsingPOSTParams) SetIntegrationID(integrationID string)

SetIntegrationID adds the integrationId to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) SetRequest

SetRequest adds the request to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) SetTimeout

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

SetTimeout adds the timeout to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) WithContext

WithContext adds the context to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the create service credentials using p o s t params (not the query body).

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

func (*CreateServiceCredentialsUsingPOSTParams) WithDomainID

WithDomainID adds the domainID to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) WithIntegrationID

WithIntegrationID adds the integrationID to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) WithRequest

WithRequest adds the request to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the create service credentials using p o s t params

func (*CreateServiceCredentialsUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateServiceCredentialsUsingPOSTReader

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

CreateServiceCredentialsUsingPOSTReader is a Reader for the CreateServiceCredentialsUsingPOST structure.

func (*CreateServiceCredentialsUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateServiceCredentialsUsingPOSTUnauthorized

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

Unauthorized

func NewCreateServiceCredentialsUsingPOSTUnauthorized

func NewCreateServiceCredentialsUsingPOSTUnauthorized() *CreateServiceCredentialsUsingPOSTUnauthorized

NewCreateServiceCredentialsUsingPOSTUnauthorized creates a CreateServiceCredentialsUsingPOSTUnauthorized with default headers values

func (*CreateServiceCredentialsUsingPOSTUnauthorized) Error

type DeleteServiceAccountUsingDELETENoContent

type DeleteServiceAccountUsingDELETENoContent struct {
}
DeleteServiceAccountUsingDELETENoContent describes a response with status code 204, with default header values.

No Content

func NewDeleteServiceAccountUsingDELETENoContent

func NewDeleteServiceAccountUsingDELETENoContent() *DeleteServiceAccountUsingDELETENoContent

NewDeleteServiceAccountUsingDELETENoContent creates a DeleteServiceAccountUsingDELETENoContent with default headers values

func (*DeleteServiceAccountUsingDELETENoContent) Error

type DeleteServiceAccountUsingDELETEParams

type DeleteServiceAccountUsingDELETEParams struct {

	/* DomainID.

	   domainId
	*/
	DomainID string

	/* IntegrationID.

	   integrationId
	*/
	IntegrationID string

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

DeleteServiceAccountUsingDELETEParams contains all the parameters to send to the API endpoint

for the delete service account using d e l e t e operation.

Typically these are written to a http.Request.

func NewDeleteServiceAccountUsingDELETEParams

func NewDeleteServiceAccountUsingDELETEParams() *DeleteServiceAccountUsingDELETEParams

NewDeleteServiceAccountUsingDELETEParams creates a new DeleteServiceAccountUsingDELETEParams 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 NewDeleteServiceAccountUsingDELETEParamsWithContext

func NewDeleteServiceAccountUsingDELETEParamsWithContext(ctx context.Context) *DeleteServiceAccountUsingDELETEParams

NewDeleteServiceAccountUsingDELETEParamsWithContext creates a new DeleteServiceAccountUsingDELETEParams object with the ability to set a context for a request.

func NewDeleteServiceAccountUsingDELETEParamsWithHTTPClient

func NewDeleteServiceAccountUsingDELETEParamsWithHTTPClient(client *http.Client) *DeleteServiceAccountUsingDELETEParams

NewDeleteServiceAccountUsingDELETEParamsWithHTTPClient creates a new DeleteServiceAccountUsingDELETEParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteServiceAccountUsingDELETEParamsWithTimeout

func NewDeleteServiceAccountUsingDELETEParamsWithTimeout(timeout time.Duration) *DeleteServiceAccountUsingDELETEParams

NewDeleteServiceAccountUsingDELETEParamsWithTimeout creates a new DeleteServiceAccountUsingDELETEParams object with the ability to set a timeout on a request.

func (*DeleteServiceAccountUsingDELETEParams) SetContext

SetContext adds the context to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) SetDefaults added in v0.2.20

func (o *DeleteServiceAccountUsingDELETEParams) SetDefaults()

SetDefaults hydrates default values in the delete service account using d e l e t e params (not the query body).

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

func (*DeleteServiceAccountUsingDELETEParams) SetDomainID

func (o *DeleteServiceAccountUsingDELETEParams) SetDomainID(domainID string)

SetDomainID adds the domainId to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) SetIntegrationID

func (o *DeleteServiceAccountUsingDELETEParams) SetIntegrationID(integrationID string)

SetIntegrationID adds the integrationId to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) SetTimeout

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

SetTimeout adds the timeout to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) WithContext

WithContext adds the context to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the delete service account using d e l e t e params (not the query body).

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

func (*DeleteServiceAccountUsingDELETEParams) WithDomainID

WithDomainID adds the domainID to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) WithIntegrationID

WithIntegrationID adds the integrationID to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) WithTimeout

WithTimeout adds the timeout to the delete service account using d e l e t e params

func (*DeleteServiceAccountUsingDELETEParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteServiceAccountUsingDELETEReader

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

DeleteServiceAccountUsingDELETEReader is a Reader for the DeleteServiceAccountUsingDELETE structure.

func (*DeleteServiceAccountUsingDELETEReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteServiceCredentialUsingDELETENoContent

type DeleteServiceCredentialUsingDELETENoContent struct {
}
DeleteServiceCredentialUsingDELETENoContent describes a response with status code 204, with default header values.

No Content

func NewDeleteServiceCredentialUsingDELETENoContent

func NewDeleteServiceCredentialUsingDELETENoContent() *DeleteServiceCredentialUsingDELETENoContent

NewDeleteServiceCredentialUsingDELETENoContent creates a DeleteServiceCredentialUsingDELETENoContent with default headers values

func (*DeleteServiceCredentialUsingDELETENoContent) Error

type DeleteServiceCredentialUsingDELETEParams

type DeleteServiceCredentialUsingDELETEParams struct {

	/* DomainID.

	   domainId
	*/
	DomainID string

	/* ID.

	   id
	*/
	ID string

	/* IntegrationID.

	   integrationId
	*/
	IntegrationID string

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

DeleteServiceCredentialUsingDELETEParams contains all the parameters to send to the API endpoint

for the delete service credential using d e l e t e operation.

Typically these are written to a http.Request.

func NewDeleteServiceCredentialUsingDELETEParams

func NewDeleteServiceCredentialUsingDELETEParams() *DeleteServiceCredentialUsingDELETEParams

NewDeleteServiceCredentialUsingDELETEParams creates a new DeleteServiceCredentialUsingDELETEParams 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 NewDeleteServiceCredentialUsingDELETEParamsWithContext

func NewDeleteServiceCredentialUsingDELETEParamsWithContext(ctx context.Context) *DeleteServiceCredentialUsingDELETEParams

NewDeleteServiceCredentialUsingDELETEParamsWithContext creates a new DeleteServiceCredentialUsingDELETEParams object with the ability to set a context for a request.

func NewDeleteServiceCredentialUsingDELETEParamsWithHTTPClient

func NewDeleteServiceCredentialUsingDELETEParamsWithHTTPClient(client *http.Client) *DeleteServiceCredentialUsingDELETEParams

NewDeleteServiceCredentialUsingDELETEParamsWithHTTPClient creates a new DeleteServiceCredentialUsingDELETEParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteServiceCredentialUsingDELETEParamsWithTimeout

func NewDeleteServiceCredentialUsingDELETEParamsWithTimeout(timeout time.Duration) *DeleteServiceCredentialUsingDELETEParams

NewDeleteServiceCredentialUsingDELETEParamsWithTimeout creates a new DeleteServiceCredentialUsingDELETEParams object with the ability to set a timeout on a request.

func (*DeleteServiceCredentialUsingDELETEParams) SetContext

SetContext adds the context to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) SetDefaults added in v0.2.20

SetDefaults hydrates default values in the delete service credential using d e l e t e params (not the query body).

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

func (*DeleteServiceCredentialUsingDELETEParams) SetDomainID

func (o *DeleteServiceCredentialUsingDELETEParams) SetDomainID(domainID string)

SetDomainID adds the domainId to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) SetID

SetID adds the id to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) SetIntegrationID

func (o *DeleteServiceCredentialUsingDELETEParams) SetIntegrationID(integrationID string)

SetIntegrationID adds the integrationId to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) SetTimeout

SetTimeout adds the timeout to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) WithContext

WithContext adds the context to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the delete service credential using d e l e t e params (not the query body).

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

func (*DeleteServiceCredentialUsingDELETEParams) WithDomainID

WithDomainID adds the domainID to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) WithID

WithID adds the id to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) WithIntegrationID

WithIntegrationID adds the integrationID to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) WithTimeout

WithTimeout adds the timeout to the delete service credential using d e l e t e params

func (*DeleteServiceCredentialUsingDELETEParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteServiceCredentialUsingDELETEReader

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

DeleteServiceCredentialUsingDELETEReader is a Reader for the DeleteServiceCredentialUsingDELETE structure.

func (*DeleteServiceCredentialUsingDELETEReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type EnumerateDomainsUsingPOSTBadRequest

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

Bad Request

func NewEnumerateDomainsUsingPOSTBadRequest

func NewEnumerateDomainsUsingPOSTBadRequest() *EnumerateDomainsUsingPOSTBadRequest

NewEnumerateDomainsUsingPOSTBadRequest creates a EnumerateDomainsUsingPOSTBadRequest with default headers values

func (*EnumerateDomainsUsingPOSTBadRequest) Error

func (*EnumerateDomainsUsingPOSTBadRequest) GetPayload

type EnumerateDomainsUsingPOSTForbidden

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

Forbidden

func NewEnumerateDomainsUsingPOSTForbidden

func NewEnumerateDomainsUsingPOSTForbidden() *EnumerateDomainsUsingPOSTForbidden

NewEnumerateDomainsUsingPOSTForbidden creates a EnumerateDomainsUsingPOSTForbidden with default headers values

func (*EnumerateDomainsUsingPOSTForbidden) Error

type EnumerateDomainsUsingPOSTOK

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

Get domains of the vCF endpoint

func NewEnumerateDomainsUsingPOSTOK

func NewEnumerateDomainsUsingPOSTOK() *EnumerateDomainsUsingPOSTOK

NewEnumerateDomainsUsingPOSTOK creates a EnumerateDomainsUsingPOSTOK with default headers values

func (*EnumerateDomainsUsingPOSTOK) Error

func (*EnumerateDomainsUsingPOSTOK) GetPayload

type EnumerateDomainsUsingPOSTParams

type EnumerateDomainsUsingPOSTParams struct {

	/* Input.

	   input
	*/
	Input *models.PhotonModelEndpointConfigRequest

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

EnumerateDomainsUsingPOSTParams contains all the parameters to send to the API endpoint

for the enumerate domains using p o s t operation.

Typically these are written to a http.Request.

func NewEnumerateDomainsUsingPOSTParams

func NewEnumerateDomainsUsingPOSTParams() *EnumerateDomainsUsingPOSTParams

NewEnumerateDomainsUsingPOSTParams creates a new EnumerateDomainsUsingPOSTParams 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 NewEnumerateDomainsUsingPOSTParamsWithContext

func NewEnumerateDomainsUsingPOSTParamsWithContext(ctx context.Context) *EnumerateDomainsUsingPOSTParams

NewEnumerateDomainsUsingPOSTParamsWithContext creates a new EnumerateDomainsUsingPOSTParams object with the ability to set a context for a request.

func NewEnumerateDomainsUsingPOSTParamsWithHTTPClient

func NewEnumerateDomainsUsingPOSTParamsWithHTTPClient(client *http.Client) *EnumerateDomainsUsingPOSTParams

NewEnumerateDomainsUsingPOSTParamsWithHTTPClient creates a new EnumerateDomainsUsingPOSTParams object with the ability to set a custom HTTPClient for a request.

func NewEnumerateDomainsUsingPOSTParamsWithTimeout

func NewEnumerateDomainsUsingPOSTParamsWithTimeout(timeout time.Duration) *EnumerateDomainsUsingPOSTParams

NewEnumerateDomainsUsingPOSTParamsWithTimeout creates a new EnumerateDomainsUsingPOSTParams object with the ability to set a timeout on a request.

func (*EnumerateDomainsUsingPOSTParams) SetContext

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

SetContext adds the context to the enumerate domains using p o s t params

func (*EnumerateDomainsUsingPOSTParams) SetDefaults added in v0.2.20

func (o *EnumerateDomainsUsingPOSTParams) SetDefaults()

SetDefaults hydrates default values in the enumerate domains using p o s t params (not the query body).

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

func (*EnumerateDomainsUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the enumerate domains using p o s t params

func (*EnumerateDomainsUsingPOSTParams) SetInput

SetInput adds the input to the enumerate domains using p o s t params

func (*EnumerateDomainsUsingPOSTParams) SetTimeout

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

SetTimeout adds the timeout to the enumerate domains using p o s t params

func (*EnumerateDomainsUsingPOSTParams) WithContext

WithContext adds the context to the enumerate domains using p o s t params

func (*EnumerateDomainsUsingPOSTParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the enumerate domains using p o s t params (not the query body).

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

func (*EnumerateDomainsUsingPOSTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the enumerate domains using p o s t params

func (*EnumerateDomainsUsingPOSTParams) WithInput

WithInput adds the input to the enumerate domains using p o s t params

func (*EnumerateDomainsUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the enumerate domains using p o s t params

func (*EnumerateDomainsUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type EnumerateDomainsUsingPOSTReader

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

EnumerateDomainsUsingPOSTReader is a Reader for the EnumerateDomainsUsingPOST structure.

func (*EnumerateDomainsUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type EnumerateDomainsUsingPOSTUnauthorized

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

Unauthorized

func NewEnumerateDomainsUsingPOSTUnauthorized

func NewEnumerateDomainsUsingPOSTUnauthorized() *EnumerateDomainsUsingPOSTUnauthorized

NewEnumerateDomainsUsingPOSTUnauthorized creates a EnumerateDomainsUsingPOSTUnauthorized with default headers values

func (*EnumerateDomainsUsingPOSTUnauthorized) Error

type GetDomainUsingGETBadRequest

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

Bad Request

func NewGetDomainUsingGETBadRequest

func NewGetDomainUsingGETBadRequest() *GetDomainUsingGETBadRequest

NewGetDomainUsingGETBadRequest creates a GetDomainUsingGETBadRequest with default headers values

func (*GetDomainUsingGETBadRequest) Error

func (*GetDomainUsingGETBadRequest) GetPayload

func (o *GetDomainUsingGETBadRequest) GetPayload() *models.Error

type GetDomainUsingGETForbidden

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

Forbidden

func NewGetDomainUsingGETForbidden

func NewGetDomainUsingGETForbidden() *GetDomainUsingGETForbidden

NewGetDomainUsingGETForbidden creates a GetDomainUsingGETForbidden with default headers values

func (*GetDomainUsingGETForbidden) Error

type GetDomainUsingGETOK

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

Get domain detail

func NewGetDomainUsingGETOK

func NewGetDomainUsingGETOK() *GetDomainUsingGETOK

NewGetDomainUsingGETOK creates a GetDomainUsingGETOK with default headers values

func (*GetDomainUsingGETOK) Error

func (o *GetDomainUsingGETOK) Error() string

func (*GetDomainUsingGETOK) GetPayload

func (o *GetDomainUsingGETOK) GetPayload() *models.VcfDomain

type GetDomainUsingGETParams

type GetDomainUsingGETParams struct {

	/* DomainID.

	   domainId
	*/
	DomainID string

	/* IntegrationID.

	   integrationId
	*/
	IntegrationID string

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

GetDomainUsingGETParams contains all the parameters to send to the API endpoint

for the get domain using g e t operation.

Typically these are written to a http.Request.

func NewGetDomainUsingGETParams

func NewGetDomainUsingGETParams() *GetDomainUsingGETParams

NewGetDomainUsingGETParams creates a new GetDomainUsingGETParams 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 NewGetDomainUsingGETParamsWithContext

func NewGetDomainUsingGETParamsWithContext(ctx context.Context) *GetDomainUsingGETParams

NewGetDomainUsingGETParamsWithContext creates a new GetDomainUsingGETParams object with the ability to set a context for a request.

func NewGetDomainUsingGETParamsWithHTTPClient

func NewGetDomainUsingGETParamsWithHTTPClient(client *http.Client) *GetDomainUsingGETParams

NewGetDomainUsingGETParamsWithHTTPClient creates a new GetDomainUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetDomainUsingGETParamsWithTimeout

func NewGetDomainUsingGETParamsWithTimeout(timeout time.Duration) *GetDomainUsingGETParams

NewGetDomainUsingGETParamsWithTimeout creates a new GetDomainUsingGETParams object with the ability to set a timeout on a request.

func (*GetDomainUsingGETParams) SetContext

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

SetContext adds the context to the get domain using get params

func (*GetDomainUsingGETParams) SetDefaults added in v0.2.20

func (o *GetDomainUsingGETParams) SetDefaults()

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

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

func (*GetDomainUsingGETParams) SetDomainID

func (o *GetDomainUsingGETParams) SetDomainID(domainID string)

SetDomainID adds the domainId to the get domain using get params

func (*GetDomainUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get domain using get params

func (*GetDomainUsingGETParams) SetIntegrationID

func (o *GetDomainUsingGETParams) SetIntegrationID(integrationID string)

SetIntegrationID adds the integrationId to the get domain using get params

func (*GetDomainUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get domain using get params

func (*GetDomainUsingGETParams) WithContext

WithContext adds the context to the get domain using get params

func (*GetDomainUsingGETParams) WithDefaults added in v0.2.20

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

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

func (*GetDomainUsingGETParams) WithDomainID

func (o *GetDomainUsingGETParams) WithDomainID(domainID string) *GetDomainUsingGETParams

WithDomainID adds the domainID to the get domain using get params

func (*GetDomainUsingGETParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get domain using get params

func (*GetDomainUsingGETParams) WithIntegrationID

func (o *GetDomainUsingGETParams) WithIntegrationID(integrationID string) *GetDomainUsingGETParams

WithIntegrationID adds the integrationID to the get domain using get params

func (*GetDomainUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get domain using get params

func (*GetDomainUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDomainUsingGETReader

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

GetDomainUsingGETReader is a Reader for the GetDomainUsingGET structure.

func (*GetDomainUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDomainUsingGETUnauthorized

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

Unauthorized

func NewGetDomainUsingGETUnauthorized

func NewGetDomainUsingGETUnauthorized() *GetDomainUsingGETUnauthorized

NewGetDomainUsingGETUnauthorized creates a GetDomainUsingGETUnauthorized with default headers values

func (*GetDomainUsingGETUnauthorized) Error

type GetDomainsUsingGETBadRequest

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

Bad Request

func NewGetDomainsUsingGETBadRequest

func NewGetDomainsUsingGETBadRequest() *GetDomainsUsingGETBadRequest

NewGetDomainsUsingGETBadRequest creates a GetDomainsUsingGETBadRequest with default headers values

func (*GetDomainsUsingGETBadRequest) Error

func (*GetDomainsUsingGETBadRequest) GetPayload

func (o *GetDomainsUsingGETBadRequest) GetPayload() *models.Error

type GetDomainsUsingGETForbidden

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

Forbidden

func NewGetDomainsUsingGETForbidden

func NewGetDomainsUsingGETForbidden() *GetDomainsUsingGETForbidden

NewGetDomainsUsingGETForbidden creates a GetDomainsUsingGETForbidden with default headers values

func (*GetDomainsUsingGETForbidden) Error

type GetDomainsUsingGETOK

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

Get domains of the vCF endpoint

func NewGetDomainsUsingGETOK

func NewGetDomainsUsingGETOK() *GetDomainsUsingGETOK

NewGetDomainsUsingGETOK creates a GetDomainsUsingGETOK with default headers values

func (*GetDomainsUsingGETOK) Error

func (o *GetDomainsUsingGETOK) Error() string

func (*GetDomainsUsingGETOK) GetPayload

func (o *GetDomainsUsingGETOK) GetPayload() *models.VcfDomain

type GetDomainsUsingGETParams

type GetDomainsUsingGETParams struct {

	/* IntegrationID.

	   integrationId
	*/
	IntegrationID string

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

GetDomainsUsingGETParams contains all the parameters to send to the API endpoint

for the get domains using g e t operation.

Typically these are written to a http.Request.

func NewGetDomainsUsingGETParams

func NewGetDomainsUsingGETParams() *GetDomainsUsingGETParams

NewGetDomainsUsingGETParams creates a new GetDomainsUsingGETParams 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 NewGetDomainsUsingGETParamsWithContext

func NewGetDomainsUsingGETParamsWithContext(ctx context.Context) *GetDomainsUsingGETParams

NewGetDomainsUsingGETParamsWithContext creates a new GetDomainsUsingGETParams object with the ability to set a context for a request.

func NewGetDomainsUsingGETParamsWithHTTPClient

func NewGetDomainsUsingGETParamsWithHTTPClient(client *http.Client) *GetDomainsUsingGETParams

NewGetDomainsUsingGETParamsWithHTTPClient creates a new GetDomainsUsingGETParams object with the ability to set a custom HTTPClient for a request.

func NewGetDomainsUsingGETParamsWithTimeout

func NewGetDomainsUsingGETParamsWithTimeout(timeout time.Duration) *GetDomainsUsingGETParams

NewGetDomainsUsingGETParamsWithTimeout creates a new GetDomainsUsingGETParams object with the ability to set a timeout on a request.

func (*GetDomainsUsingGETParams) SetContext

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

SetContext adds the context to the get domains using get params

func (*GetDomainsUsingGETParams) SetDefaults added in v0.2.20

func (o *GetDomainsUsingGETParams) SetDefaults()

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

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

func (*GetDomainsUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get domains using get params

func (*GetDomainsUsingGETParams) SetIntegrationID

func (o *GetDomainsUsingGETParams) SetIntegrationID(integrationID string)

SetIntegrationID adds the integrationId to the get domains using get params

func (*GetDomainsUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get domains using get params

func (*GetDomainsUsingGETParams) WithContext

WithContext adds the context to the get domains using get params

func (*GetDomainsUsingGETParams) WithDefaults added in v0.2.20

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

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

func (*GetDomainsUsingGETParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get domains using get params

func (*GetDomainsUsingGETParams) WithIntegrationID

func (o *GetDomainsUsingGETParams) WithIntegrationID(integrationID string) *GetDomainsUsingGETParams

WithIntegrationID adds the integrationID to the get domains using get params

func (*GetDomainsUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get domains using get params

func (*GetDomainsUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetDomainsUsingGETReader

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

GetDomainsUsingGETReader is a Reader for the GetDomainsUsingGET structure.

func (*GetDomainsUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetDomainsUsingGETUnauthorized

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

Unauthorized

func NewGetDomainsUsingGETUnauthorized

func NewGetDomainsUsingGETUnauthorized() *GetDomainsUsingGETUnauthorized

NewGetDomainsUsingGETUnauthorized creates a GetDomainsUsingGETUnauthorized with default headers values

func (*GetDomainsUsingGETUnauthorized) Error

type PatchServiceAccountUsingPATCHOK

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

OK

func NewPatchServiceAccountUsingPATCHOK

func NewPatchServiceAccountUsingPATCHOK() *PatchServiceAccountUsingPATCHOK

NewPatchServiceAccountUsingPATCHOK creates a PatchServiceAccountUsingPATCHOK with default headers values

func (*PatchServiceAccountUsingPATCHOK) Error

func (*PatchServiceAccountUsingPATCHOK) GetPayload

type PatchServiceAccountUsingPATCHParams

type PatchServiceAccountUsingPATCHParams struct {

	/* DomainID.

	   domainId
	*/
	DomainID string

	/* IntegrationID.

	   integrationId
	*/
	IntegrationID string

	/* PatchRequest.

	   patchRequest
	*/
	PatchRequest map[string]string

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

PatchServiceAccountUsingPATCHParams contains all the parameters to send to the API endpoint

for the patch service account using p a t c h operation.

Typically these are written to a http.Request.

func NewPatchServiceAccountUsingPATCHParams

func NewPatchServiceAccountUsingPATCHParams() *PatchServiceAccountUsingPATCHParams

NewPatchServiceAccountUsingPATCHParams creates a new PatchServiceAccountUsingPATCHParams 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 NewPatchServiceAccountUsingPATCHParamsWithContext

func NewPatchServiceAccountUsingPATCHParamsWithContext(ctx context.Context) *PatchServiceAccountUsingPATCHParams

NewPatchServiceAccountUsingPATCHParamsWithContext creates a new PatchServiceAccountUsingPATCHParams object with the ability to set a context for a request.

func NewPatchServiceAccountUsingPATCHParamsWithHTTPClient

func NewPatchServiceAccountUsingPATCHParamsWithHTTPClient(client *http.Client) *PatchServiceAccountUsingPATCHParams

NewPatchServiceAccountUsingPATCHParamsWithHTTPClient creates a new PatchServiceAccountUsingPATCHParams object with the ability to set a custom HTTPClient for a request.

func NewPatchServiceAccountUsingPATCHParamsWithTimeout

func NewPatchServiceAccountUsingPATCHParamsWithTimeout(timeout time.Duration) *PatchServiceAccountUsingPATCHParams

NewPatchServiceAccountUsingPATCHParamsWithTimeout creates a new PatchServiceAccountUsingPATCHParams object with the ability to set a timeout on a request.

func (*PatchServiceAccountUsingPATCHParams) SetContext

SetContext adds the context to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) SetDefaults added in v0.2.20

func (o *PatchServiceAccountUsingPATCHParams) SetDefaults()

SetDefaults hydrates default values in the patch service account using p a t c h params (not the query body).

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

func (*PatchServiceAccountUsingPATCHParams) SetDomainID

func (o *PatchServiceAccountUsingPATCHParams) SetDomainID(domainID string)

SetDomainID adds the domainId to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) SetIntegrationID

func (o *PatchServiceAccountUsingPATCHParams) SetIntegrationID(integrationID string)

SetIntegrationID adds the integrationId to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) SetPatchRequest

func (o *PatchServiceAccountUsingPATCHParams) SetPatchRequest(patchRequest map[string]string)

SetPatchRequest adds the patchRequest to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) SetTimeout

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

SetTimeout adds the timeout to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) WithContext

WithContext adds the context to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) WithDefaults added in v0.2.20

WithDefaults hydrates default values in the patch service account using p a t c h params (not the query body).

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

func (*PatchServiceAccountUsingPATCHParams) WithDomainID

WithDomainID adds the domainID to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) WithIntegrationID

WithIntegrationID adds the integrationID to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) WithPatchRequest

WithPatchRequest adds the patchRequest to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) WithTimeout

WithTimeout adds the timeout to the patch service account using p a t c h params

func (*PatchServiceAccountUsingPATCHParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchServiceAccountUsingPATCHReader

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

PatchServiceAccountUsingPATCHReader is a Reader for the PatchServiceAccountUsingPATCH structure.

func (*PatchServiceAccountUsingPATCHReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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