-
Notifications
You must be signed in to change notification settings - Fork 640
/
api_op_ListDeployments.go
213 lines (182 loc) · 6.77 KB
/
api_op_ListDeployments.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package codedeploy
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
)
// Represents the input of a ListDeployments operation.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentsInput
type ListDeploymentsInput struct {
_ struct{} `type:"structure"`
// The name of an AWS CodeDeploy application associated with the IAM user or
// AWS account.
//
// If applicationName is specified, then deploymentGroupName must be specified.
// If it is not specified, then deploymentGroupName must not be specified.
ApplicationName *string `locationName:"applicationName" min:"1" type:"string"`
// A time range (start and end) for returning a subset of the list of deployments.
CreateTimeRange *TimeRange `locationName:"createTimeRange" type:"structure"`
// The name of a deployment group for the specified application.
//
// If deploymentGroupName is specified, then applicationName must be specified.
// If it is not specified, then applicationName must not be specified.
DeploymentGroupName *string `locationName:"deploymentGroupName" min:"1" type:"string"`
// A subset of deployments to list by status:
//
// * Created: Include created deployments in the resulting list.
//
// * Queued: Include queued deployments in the resulting list.
//
// * In Progress: Include in-progress deployments in the resulting list.
//
// * Succeeded: Include successful deployments in the resulting list.
//
// * Failed: Include failed deployments in the resulting list.
//
// * Stopped: Include stopped deployments in the resulting list.
IncludeOnlyStatuses []DeploymentStatus `locationName:"includeOnlyStatuses" type:"list"`
// An identifier returned from the previous list deployments call. It can be
// used to return the next set of deployments in the list.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListDeploymentsInput) String() string {
return awsutil.Prettify(s)
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListDeploymentsInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "ListDeploymentsInput"}
if s.ApplicationName != nil && len(*s.ApplicationName) < 1 {
invalidParams.Add(aws.NewErrParamMinLen("ApplicationName", 1))
}
if s.DeploymentGroupName != nil && len(*s.DeploymentGroupName) < 1 {
invalidParams.Add(aws.NewErrParamMinLen("DeploymentGroupName", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// Represents the output of a ListDeployments operation.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeploymentsOutput
type ListDeploymentsOutput struct {
_ struct{} `type:"structure"`
// A list of deployment IDs.
Deployments []string `locationName:"deployments" type:"list"`
// If a large amount of information is returned, an identifier is also returned.
// It can be used in a subsequent list deployments call to return the next set
// of deployments in the list.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListDeploymentsOutput) String() string {
return awsutil.Prettify(s)
}
const opListDeployments = "ListDeployments"
// ListDeploymentsRequest returns a request value for making API operation for
// AWS CodeDeploy.
//
// Lists the deployments in a deployment group for an application registered
// with the IAM user or AWS account.
//
// // Example sending a request using ListDeploymentsRequest.
// req := client.ListDeploymentsRequest(params)
// resp, err := req.Send(context.TODO())
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/ListDeployments
func (c *Client) ListDeploymentsRequest(input *ListDeploymentsInput) ListDeploymentsRequest {
op := &aws.Operation{
Name: opListDeployments,
HTTPMethod: "POST",
HTTPPath: "/",
Paginator: &aws.Paginator{
InputTokens: []string{"nextToken"},
OutputTokens: []string{"nextToken"},
LimitToken: "",
TruncationToken: "",
},
}
if input == nil {
input = &ListDeploymentsInput{}
}
req := c.newRequest(op, input, &ListDeploymentsOutput{})
return ListDeploymentsRequest{Request: req, Input: input, Copy: c.ListDeploymentsRequest}
}
// ListDeploymentsRequest is the request type for the
// ListDeployments API operation.
type ListDeploymentsRequest struct {
*aws.Request
Input *ListDeploymentsInput
Copy func(*ListDeploymentsInput) ListDeploymentsRequest
}
// Send marshals and sends the ListDeployments API request.
func (r ListDeploymentsRequest) Send(ctx context.Context) (*ListDeploymentsResponse, error) {
r.Request.SetContext(ctx)
err := r.Request.Send()
if err != nil {
return nil, err
}
resp := &ListDeploymentsResponse{
ListDeploymentsOutput: r.Request.Data.(*ListDeploymentsOutput),
response: &aws.Response{Request: r.Request},
}
return resp, nil
}
// NewListDeploymentsRequestPaginator returns a paginator for ListDeployments.
// Use Next method to get the next page, and CurrentPage to get the current
// response page from the paginator. Next will return false, if there are
// no more pages, or an error was encountered.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over pages.
// req := client.ListDeploymentsRequest(input)
// p := codedeploy.NewListDeploymentsRequestPaginator(req)
//
// for p.Next(context.TODO()) {
// page := p.CurrentPage()
// }
//
// if err := p.Err(); err != nil {
// return err
// }
//
func NewListDeploymentsPaginator(req ListDeploymentsRequest) ListDeploymentsPaginator {
return ListDeploymentsPaginator{
Pager: aws.Pager{
NewRequest: func(ctx context.Context) (*aws.Request, error) {
var inCpy *ListDeploymentsInput
if req.Input != nil {
tmp := *req.Input
inCpy = &tmp
}
newReq := req.Copy(inCpy)
newReq.SetContext(ctx)
return newReq.Request, nil
},
},
}
}
// ListDeploymentsPaginator is used to paginate the request. This can be done by
// calling Next and CurrentPage.
type ListDeploymentsPaginator struct {
aws.Pager
}
func (p *ListDeploymentsPaginator) CurrentPage() *ListDeploymentsOutput {
return p.Pager.CurrentPage().(*ListDeploymentsOutput)
}
// ListDeploymentsResponse is the response type for the
// ListDeployments API operation.
type ListDeploymentsResponse struct {
*ListDeploymentsOutput
response *aws.Response
}
// SDKResponseMetdata returns the response metadata for the
// ListDeployments request.
func (r *ListDeploymentsResponse) SDKResponseMetdata() *aws.Response {
return r.response
}