1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package glue
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/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12)
13
14// Retrieves the names of all job resources in this AWS account, or the resources
15// with the specified tag. This operation allows you to see which resources are
16// available in your account, and their names. This operation takes the optional
17// Tags field, which you can use as a filter on the response so that tagged
18// resources can be retrieved as a group. If you choose to use tags filtering, only
19// resources with the tag are retrieved.
20func (c *Client) ListJobs(ctx context.Context, params *ListJobsInput, optFns ...func(*Options)) (*ListJobsOutput, error) {
21	if params == nil {
22		params = &ListJobsInput{}
23	}
24
25	result, metadata, err := c.invokeOperation(ctx, "ListJobs", params, optFns, addOperationListJobsMiddlewares)
26	if err != nil {
27		return nil, err
28	}
29
30	out := result.(*ListJobsOutput)
31	out.ResultMetadata = metadata
32	return out, nil
33}
34
35type ListJobsInput struct {
36
37	// The maximum size of a list to return.
38	MaxResults *int32
39
40	// A continuation token, if this is a continuation request.
41	NextToken *string
42
43	// Specifies to return only these tagged resources.
44	Tags map[string]string
45}
46
47type ListJobsOutput struct {
48
49	// The names of all jobs in the account, or the jobs with the specified tags.
50	JobNames []string
51
52	// A continuation token, if the returned list does not contain the last metric
53	// available.
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(&awsAwsjson11_serializeOpListJobs{}, middleware.After)
62	if err != nil {
63		return err
64	}
65	err = stack.Deserialize.Add(&awsAwsjson11_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 size of a list to return.
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 != nil {
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	var limit *int32
184	if p.options.Limit > 0 {
185		limit = &p.options.Limit
186	}
187	params.MaxResults = limit
188
189	result, err := p.client.ListJobs(ctx, &params, optFns...)
190	if err != nil {
191		return nil, err
192	}
193	p.firstPage = false
194
195	prevToken := p.nextToken
196	p.nextToken = result.NextToken
197
198	if p.options.StopOnDuplicateToken && prevToken != nil && p.nextToken != nil && *prevToken == *p.nextToken {
199		p.nextToken = nil
200	}
201
202	return result, nil
203}
204
205func newServiceMetadataMiddleware_opListJobs(region string) *awsmiddleware.RegisterServiceMetadata {
206	return &awsmiddleware.RegisterServiceMetadata{
207		Region:        region,
208		ServiceID:     ServiceID,
209		SigningName:   "glue",
210		OperationName: "ListJobs",
211	}
212}
213