-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathget_deploy_parameters.go
49 lines (38 loc) · 1.18 KB
/
get_deploy_parameters.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package operations
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
strfmt "github.com/go-openapi/strfmt"
)
// NewGetDeployParams creates a new GetDeployParams object
// with the default values initialized.
func NewGetDeployParams() *GetDeployParams {
var ()
return &GetDeployParams{}
}
/*GetDeployParams contains all the parameters to send to the API endpoint
for the get deploy operation typically these are written to a http.Request
*/
type GetDeployParams struct {
/*DeployID*/
DeployID string
}
// WithDeployID adds the deployId to the get deploy params
func (o *GetDeployParams) WithDeployID(DeployID string) *GetDeployParams {
o.DeployID = DeployID
return o
}
// WriteToRequest writes these params to a swagger request
func (o *GetDeployParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
var res []error
// path param deploy_id
if err := r.SetPathParam("deploy_id", o.DeployID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}