Documentation ¶
Index ¶
- type Client
- 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) SetAPIVersion(aPIVersion *string)
- func (o *GetDeploymentEventsUsingGETParams) SetContext(ctx context.Context)
- func (o *GetDeploymentEventsUsingGETParams) SetDepID(depID strfmt.UUID)
- func (o *GetDeploymentEventsUsingGETParams) SetDollarOrderby(dollarOrderby []string)
- func (o *GetDeploymentEventsUsingGETParams) SetDollarSkip(dollarSkip *int32)
- func (o *GetDeploymentEventsUsingGETParams) SetDollarTop(dollarTop *int32)
- func (o *GetDeploymentEventsUsingGETParams) SetHTTPClient(client *http.Client)
- func (o *GetDeploymentEventsUsingGETParams) SetIncludeAllSubEvents(includeAllSubEvents *bool)
- func (o *GetDeploymentEventsUsingGETParams) SetParentID(parentID *strfmt.UUID)
- func (o *GetDeploymentEventsUsingGETParams) SetTimeout(timeout time.Duration)
- func (o *GetDeploymentEventsUsingGETParams) WithAPIVersion(aPIVersion *string) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithContext(ctx context.Context) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithDepID(depID strfmt.UUID) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithDollarOrderby(dollarOrderby []string) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithDollarSkip(dollarSkip *int32) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithDollarTop(dollarTop *int32) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithHTTPClient(client *http.Client) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithIncludeAllSubEvents(includeAllSubEvents *bool) *GetDeploymentEventsUsingGETParams
- func (o *GetDeploymentEventsUsingGETParams) WithParentID(parentID *strfmt.UUID) *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 GetDeploymentEventsUsingGETNotFound ¶
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
func (*GetDeploymentEventsUsingGETNotFound) GetPayload ¶ added in v0.2.9
func (o *GetDeploymentEventsUsingGETNotFound) GetPayload() *models.Error
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 { /*DollarOrderby Sorting criteria in the format: property (asc|desc). Default sort order is ascending. Multiple sort criteria are supported. */ DollarOrderby []string /*DollarSkip Number of records you want to skip */ DollarSkip *int32 /*DollarTop Number of records you want */ DollarTop *int32 /*APIVersion The version of the API in yyyy-MM-dd format (UTC). For versioning information please refer to /catalog/api/about */ APIVersion *string /*DepID Deployment ID */ DepID strfmt.UUID /*IncludeAllSubEvents Whether to include all events in the response. */ IncludeAllSubEvents *bool /*ParentID Parent Event Id */ ParentID *strfmt.UUID 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) SetAPIVersion ¶ added in v0.2.9
func (o *GetDeploymentEventsUsingGETParams) SetAPIVersion(aPIVersion *string)
SetAPIVersion adds the apiVersion to the get deployment events using get params
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) SetDollarOrderby ¶ added in v0.2.0
func (o *GetDeploymentEventsUsingGETParams) SetDollarOrderby(dollarOrderby []string)
SetDollarOrderby adds the dollarOrderby to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetDollarSkip ¶ added in v0.2.0
func (o *GetDeploymentEventsUsingGETParams) SetDollarSkip(dollarSkip *int32)
SetDollarSkip adds the dollarSkip to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) SetDollarTop ¶ added in v0.2.0
func (o *GetDeploymentEventsUsingGETParams) SetDollarTop(dollarTop *int32)
SetDollarTop adds the dollarTop 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) SetIncludeAllSubEvents ¶ added in v0.2.0
func (o *GetDeploymentEventsUsingGETParams) SetIncludeAllSubEvents(includeAllSubEvents *bool)
SetIncludeAllSubEvents adds the includeAllSubEvents 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) SetTimeout ¶
func (o *GetDeploymentEventsUsingGETParams) SetTimeout(timeout time.Duration)
SetTimeout adds the timeout to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithAPIVersion ¶ added in v0.2.9
func (o *GetDeploymentEventsUsingGETParams) WithAPIVersion(aPIVersion *string) *GetDeploymentEventsUsingGETParams
WithAPIVersion adds the aPIVersion 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) WithDollarOrderby ¶ added in v0.2.0
func (o *GetDeploymentEventsUsingGETParams) WithDollarOrderby(dollarOrderby []string) *GetDeploymentEventsUsingGETParams
WithDollarOrderby adds the dollarOrderby to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithDollarSkip ¶ added in v0.2.0
func (o *GetDeploymentEventsUsingGETParams) WithDollarSkip(dollarSkip *int32) *GetDeploymentEventsUsingGETParams
WithDollarSkip adds the dollarSkip to the get deployment events using get params
func (*GetDeploymentEventsUsingGETParams) WithDollarTop ¶ added in v0.2.0
func (o *GetDeploymentEventsUsingGETParams) WithDollarTop(dollarTop *int32) *GetDeploymentEventsUsingGETParams
WithDollarTop adds the dollarTop 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) WithIncludeAllSubEvents ¶ added in v0.2.0
func (o *GetDeploymentEventsUsingGETParams) WithIncludeAllSubEvents(includeAllSubEvents *bool) *GetDeploymentEventsUsingGETParams
WithIncludeAllSubEvents adds the includeAllSubEvents 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) 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