1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package dataexchange
4
5import (
6	"context"
7	"fmt"
8	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
9	"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
10	"github.com/aws/aws-sdk-go-v2/service/dataexchange/types"
11	"github.com/aws/smithy-go/middleware"
12	smithyhttp "github.com/aws/smithy-go/transport/http"
13)
14
15// This operation lists your jobs sorted by CreatedAt in descending order.
16func (c *Client) ListJobs(ctx context.Context, params *ListJobsInput, optFns ...func(*Options)) (*ListJobsOutput, error) {
17	if params == nil {
18		params = &ListJobsInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "ListJobs", params, optFns, addOperationListJobsMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*ListJobsOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31type ListJobsInput struct {
32
33	// The unique identifier for a data set.
34	DataSetId *string
35
36	// The maximum number of results returned by a single call.
37	MaxResults int32
38
39	// The token value retrieved from a previous call to access the next page of
40	// results.
41	NextToken *string
42
43	// The unique identifier for a revision.
44	RevisionId *string
45}
46
47type ListJobsOutput struct {
48
49	// The jobs listed by the request.
50	Jobs []types.JobEntry
51
52	// The token value retrieved from a previous call to access the next page of
53	// results.
54	NextToken *string
55
56	// Metadata pertaining to the operation's result.
57	ResultMetadata middleware.Metadata
58}
59
60func addOperationListJobsMiddlewares(stack *middleware.Stack, options Options) (err error) {
61	err = stack.Serialize.Add(&awsRestjson1_serializeOpListJobs{}, middleware.After)
62	if err != nil {
63		return err
64	}
65	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpListJobs{}, middleware.After)
66	if err != nil {
67		return err
68	}
69	if err = addSetLoggerMiddleware(stack, options); err != nil {
70		return err
71	}
72	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
73		return err
74	}
75	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
76		return err
77	}
78	if err = addResolveEndpointMiddleware(stack, options); err != nil {
79		return err
80	}
81	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
82		return err
83	}
84	if err = addRetryMiddlewares(stack, options); err != nil {
85		return err
86	}
87	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
88		return err
89	}
90	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
91		return err
92	}
93	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
94		return err
95	}
96	if err = addClientUserAgent(stack); err != nil {
97		return err
98	}
99	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
100		return err
101	}
102	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
103		return err
104	}
105	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opListJobs(options.Region), middleware.Before); err != nil {
106		return err
107	}
108	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
109		return err
110	}
111	if err = addResponseErrorMiddleware(stack); err != nil {
112		return err
113	}
114	if err = addRequestResponseLogging(stack, options); err != nil {
115		return err
116	}
117	return nil
118}
119
120// ListJobsAPIClient is a client that implements the ListJobs operation.
121type ListJobsAPIClient interface {
122	ListJobs(context.Context, *ListJobsInput, ...func(*Options)) (*ListJobsOutput, error)
123}
124
125var _ ListJobsAPIClient = (*Client)(nil)
126
127// ListJobsPaginatorOptions is the paginator options for ListJobs
128type ListJobsPaginatorOptions struct {
129	// The maximum number of results returned by a single call.
130	Limit int32
131
132	// Set to true if pagination should stop if the service returns a pagination token
133	// that matches the most recent token provided to the service.
134	StopOnDuplicateToken bool
135}
136
137// ListJobsPaginator is a paginator for ListJobs
138type ListJobsPaginator struct {
139	options   ListJobsPaginatorOptions
140	client    ListJobsAPIClient
141	params    *ListJobsInput
142	nextToken *string
143	firstPage bool
144}
145
146// NewListJobsPaginator returns a new ListJobsPaginator
147func NewListJobsPaginator(client ListJobsAPIClient, params *ListJobsInput, optFns ...func(*ListJobsPaginatorOptions)) *ListJobsPaginator {
148	options := ListJobsPaginatorOptions{}
149	if params.MaxResults != 0 {
150		options.Limit = params.MaxResults
151	}
152
153	for _, fn := range optFns {
154		fn(&options)
155	}
156
157	if params == nil {
158		params = &ListJobsInput{}
159	}
160
161	return &ListJobsPaginator{
162		options:   options,
163		client:    client,
164		params:    params,
165		firstPage: true,
166	}
167}
168
169// HasMorePages returns a boolean indicating whether more pages are available
170func (p *ListJobsPaginator) HasMorePages() bool {
171	return p.firstPage || p.nextToken != nil
172}
173
174// NextPage retrieves the next ListJobs page.
175func (p *ListJobsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListJobsOutput, error) {
176	if !p.HasMorePages() {
177		return nil, fmt.Errorf("no more pages available")
178	}
179
180	params := *p.params
181	params.NextToken = p.nextToken
182
183	params.MaxResults = p.options.Limit
184
185	result, err := p.client.ListJobs(ctx, &params, optFns...)
186	if err != nil {
187		return nil, err
188	}
189	p.firstPage = false
190
191	prevToken := p.nextToken
192	p.nextToken = result.NextToken
193
194	if p.options.StopOnDuplicateToken && prevToken != nil && p.nextToken != nil && *prevToken == *p.nextToken {
195		p.nextToken = nil
196	}
197
198	return result, nil
199}
200
201func newServiceMetadataMiddleware_opListJobs(region string) *awsmiddleware.RegisterServiceMetadata {
202	return &awsmiddleware.RegisterServiceMetadata{
203		Region:        region,
204		ServiceID:     ServiceID,
205		SigningName:   "dataexchange",
206		OperationName: "ListJobs",
207	}
208}
209