Documentation
¶
Index ¶
- type Client
- type GetDeploymentEventsUsingGETForbidden
- type GetDeploymentEventsUsingGETNotFound
- type GetDeploymentEventsUsingGETOK
- type GetDeploymentEventsUsingGETParams
- func NewGetDeploymentEventsUsingGETParams() *GetDeploymentEventsUsingGETParams
- func NewGetDeploymentEventsUsingGETParamsWithContext(ctx context.Context) *GetDeploymentEventsUsingGETParams
- func NewGetDeploymentEventsUsingGETParamsWithHTTPClient(client *http.Client) *GetDeploymentEventsUsingGETParams
- func NewGetDeploymentEventsUsingGETParamsWithTimeout(timeout time.Duration) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) SetContext(ctx context.Context)
- func (o *GetDeploymentEventsUsingGETParams) SetDepID(depID strfmt.UUID)
- func (o *GetDeploymentEventsUsingGETParams) SetHTTPClient(client *http.Client)
- func (o *GetDeploymentEventsUsingGETParams) SetPage(page *int32)
- func (o *GetDeploymentEventsUsingGETParams) SetParentID(parentID *strfmt.UUID)
- func (o *GetDeploymentEventsUsingGETParams) SetSize(size *int32)
- func (o *GetDeploymentEventsUsingGETParams) SetSort(sort []string)
- func (o *GetDeploymentEventsUsingGETParams) SetTimeout(timeout time.Duration)
- func (o *GetDeploymentEventsUsingGETParams) WithContext(ctx context.Context) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithDepID(depID strfmt.UUID) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithHTTPClient(client *http.Client) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithPage(page *int32) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithParentID(parentID *strfmt.UUID) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithSize(size *int32) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithSort(sort []string) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithTimeout(timeout time.Duration) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
- type GetDeploymentEventsUsingGETReader
- type GetDeploymentEventsUsingGETUnauthorized
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client for deployment events API
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Client
New creates a new deployment events API client.
func (*Client) GetDeploymentEventsUsingGET ¶
func (a *Client) GetDeploymentEventsUsingGET(params *GetDeploymentEventsUsingGETParams) (*GetDeploymentEventsUsingGETOK, error)
GetDeploymentEventsUsingGET fetches deployment events
Returns the events for the deployment.
func (*Client) SetTransport ¶
func (a *Client) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client
type GetDeploymentEventsUsingGETForbidden ¶
type GetDeploymentEventsUsingGETForbidden struct { }
GetDeploymentEventsUsingGETForbidden handles this case with default header values.
Forbidden
func NewGetDeploymentEventsUsingGETForbidden ¶
func NewGetDeploymentEventsUsingGETForbidden() *GetDeploymentEventsUsingGETForbidden
NewGetDeploymentEventsUsingGETForbidden creates a GetDeploymentEventsUsingGETForbidden with default headers values
func (*GetDeploymentEventsUsingGETForbidden) Error ¶
func (o *GetDeploymentEventsUsingGETForbidden) Error() string
type GetDeploymentEventsUsingGETNotFound ¶
type GetDeploymentEventsUsingGETNotFound struct { }
GetDeploymentEventsUsingGETNotFound handles this case with default header values.
Not Found
func NewGetDeploymentEventsUsingGETNotFound ¶
func NewGetDeploymentEventsUsingGETNotFound() *GetDeploymentEventsUsingGETNotFound
NewGetDeploymentEventsUsingGETNotFound creates a GetDeploymentEventsUsingGETNotFound with default headers values
func (*GetDeploymentEventsUsingGETNotFound) Error ¶
func (o *GetDeploymentEventsUsingGETNotFound) Error() string
type GetDeploymentEventsUsingGETOK ¶
type GetDeploymentEventsUsingGETOK struct {
Payload *models.PageOfDeploymentEvent
}
GetDeploymentEventsUsingGETOK handles this case with default header values.
OK
func NewGetDeploymentEventsUsingGETOK ¶
func NewGetDeploymentEventsUsingGETOK() *GetDeploymentEventsUsingGETOK
NewGetDeploymentEventsUsingGETOK creates a GetDeploymentEventsUsingGETOK with default headers values
func (*GetDeploymentEventsUsingGETOK) Error ¶
func (o *GetDeploymentEventsUsingGETOK) Error() string
func (*GetDeploymentEventsUsingGETOK) GetPayload ¶
func (o *GetDeploymentEventsUsingGETOK) GetPayload() *models.PageOfDeploymentEvent
type GetDeploymentEventsUsingGETParams ¶
type GetDeploymentEventsUsingGETParams struct { /*DepID Deployment ID */ DepID strfmt.UUID /*Page Results page you want to retrieve (0..N) */ Page *int32 /*ParentID Parent Event Id */ ParentID *strfmt.UUID /*Size Number of records per page. */ Size *int32 /*Sort Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported. */ Sort []string Context context.Context HTTPClient *http.Client // contains filtered or unexported fields }
GetDeploymentEventsUsingGETParams contains all the parameters to send to the API endpoint for the get deployment events using g e t operation typically these are written to a http.Request
func NewGetDeploymentEventsUsingGETParams ¶
func NewGetDeploymentEventsUsingGETParams() *GetDeploymentEventsUsingGETParams
NewGetDeploymentEventsUsingGETParams creates a new GetDeploymentEventsUsingGETParams object with the default values initialized.
func NewGetDeploymentEventsUsingGETParamsWithContext ¶
func NewGetDeploymentEventsUsingGETParamsWithContext(ctx context.Context) *GetDeploymentEventsUsingGETParams
NewGetDeploymentEventsUsingGETParamsWithContext creates a new GetDeploymentEventsUsingGETParams object with the default values initialized, and the ability to set a context for a request
func NewGetDeploymentEventsUsingGETParamsWithHTTPClient ¶
func NewGetDeploymentEventsUsingGETParamsWithHTTPClient(client *http.Client) *GetDeploymentEventsUsingGETParams
NewGetDeploymentEventsUsingGETParamsWithHTTPClient creates a new GetDeploymentEventsUsingGETParams object with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetDeploymentEventsUsingGETParamsWithTimeout ¶
func NewGetDeploymentEventsUsingGETParamsWithTimeout(timeout time.Duration) *GetDeploymentEventsUsingGETParams
NewGetDeploymentEventsUsingGETParamsWithTimeout creates a new GetDeploymentEventsUsingGETParams object with the default values initialized, and the ability to set a timeout on a request
func (*GetDeploymentEventsUsingGETParams) SetContext ¶
func (o *GetDeploymentEventsUsingGETParams) SetContext(ctx context.Context)
SetContext adds the context to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetDepID ¶
func (o *GetDeploymentEventsUsingGETParams) SetDepID(depID strfmt.UUID)
SetDepID adds the depId to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetHTTPClient ¶
func (o *GetDeploymentEventsUsingGETParams) SetHTTPClient(client *http.Client)
SetHTTPClient adds the HTTPClient to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetPage ¶
func (o *GetDeploymentEventsUsingGETParams) SetPage(page *int32)
SetPage adds the page to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetParentID ¶
func (o *GetDeploymentEventsUsingGETParams) SetParentID(parentID *strfmt.UUID)
SetParentID adds the parentId to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetSize ¶
func (o *GetDeploymentEventsUsingGETParams) SetSize(size *int32)
SetSize adds the size to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetSort ¶
func (o *GetDeploymentEventsUsingGETParams) SetSort(sort []string)
SetSort adds the sort to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetTimeout ¶
func (o *GetDeploymentEventsUsingGETParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithContext ¶
func (o *GetDeploymentEventsUsingGETParams) WithContext(ctx context.Context) *GetDeploymentEventsUsingGETParams
WithContext adds the context to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithDepID ¶
func (o *GetDeploymentEventsUsingGETParams) WithDepID(depID strfmt.UUID) *GetDeploymentEventsUsingGETParams
WithDepID adds the depID to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithHTTPClient ¶
func (o *GetDeploymentEventsUsingGETParams) WithHTTPClient(client *http.Client) *GetDeploymentEventsUsingGETParams
WithHTTPClient adds the HTTPClient to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithPage ¶
func (o *GetDeploymentEventsUsingGETParams) WithPage(page *int32) *GetDeploymentEventsUsingGETParams
WithPage adds the page to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithParentID ¶
func (o *GetDeploymentEventsUsingGETParams) WithParentID(parentID *strfmt.UUID) *GetDeploymentEventsUsingGETParams
WithParentID adds the parentID to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithSize ¶
func (o *GetDeploymentEventsUsingGETParams) WithSize(size *int32) *GetDeploymentEventsUsingGETParams
WithSize adds the size to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithSort ¶
func (o *GetDeploymentEventsUsingGETParams) WithSort(sort []string) *GetDeploymentEventsUsingGETParams
WithSort adds the sort to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithTimeout ¶
func (o *GetDeploymentEventsUsingGETParams) WithTimeout(timeout time.Duration) *GetDeploymentEventsUsingGETParams
WithTimeout adds the timeout to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WriteToRequest ¶
func (o *GetDeploymentEventsUsingGETParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error
WriteToRequest writes these params to a swagger request
type GetDeploymentEventsUsingGETReader ¶
type GetDeploymentEventsUsingGETReader struct {
// contains filtered or unexported fields
}
GetDeploymentEventsUsingGETReader is a Reader for the GetDeploymentEventsUsingGET structure.
func (*GetDeploymentEventsUsingGETReader) ReadResponse ¶
func (o *GetDeploymentEventsUsingGETReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)
ReadResponse reads a server response into the received o.
type GetDeploymentEventsUsingGETUnauthorized ¶
type GetDeploymentEventsUsingGETUnauthorized struct { }
GetDeploymentEventsUsingGETUnauthorized handles this case with default header values.
Unauthorized
func NewGetDeploymentEventsUsingGETUnauthorized ¶
func NewGetDeploymentEventsUsingGETUnauthorized() *GetDeploymentEventsUsingGETUnauthorized
NewGetDeploymentEventsUsingGETUnauthorized creates a GetDeploymentEventsUsingGETUnauthorized with default headers values
func (*GetDeploymentEventsUsingGETUnauthorized) Error ¶
func (o *GetDeploymentEventsUsingGETUnauthorized) Error() string