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/aws-sdk-go-v2/service/glue/types"
11	"github.com/aws/smithy-go/middleware"
12	smithyhttp "github.com/aws/smithy-go/transport/http"
13)
14
15// Retrieves metadata for all runs of a given job definition.
16func (c *Client) GetJobRuns(ctx context.Context, params *GetJobRunsInput, optFns ...func(*Options)) (*GetJobRunsOutput, error) {
17	if params == nil {
18		params = &GetJobRunsInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "GetJobRuns", params, optFns, addOperationGetJobRunsMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*GetJobRunsOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31type GetJobRunsInput struct {
32
33	// The name of the job definition for which to retrieve all job runs.
34	//
35	// This member is required.
36	JobName *string
37
38	// The maximum size of the response.
39	MaxResults *int32
40
41	// A continuation token, if this is a continuation call.
42	NextToken *string
43}
44
45type GetJobRunsOutput struct {
46
47	// A list of job-run metadata objects.
48	JobRuns []types.JobRun
49
50	// A continuation token, if not all requested job runs have been returned.
51	NextToken *string
52
53	// Metadata pertaining to the operation's result.
54	ResultMetadata middleware.Metadata
55}
56
57func addOperationGetJobRunsMiddlewares(stack *middleware.Stack, options Options) (err error) {
58	err = stack.Serialize.Add(&awsAwsjson11_serializeOpGetJobRuns{}, middleware.After)
59	if err != nil {
60		return err
61	}
62	err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpGetJobRuns{}, middleware.After)
63	if err != nil {
64		return err
65	}
66	if err = addSetLoggerMiddleware(stack, options); err != nil {
67		return err
68	}
69	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
70		return err
71	}
72	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
73		return err
74	}
75	if err = addResolveEndpointMiddleware(stack, options); err != nil {
76		return err
77	}
78	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
79		return err
80	}
81	if err = addRetryMiddlewares(stack, options); err != nil {
82		return err
83	}
84	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
85		return err
86	}
87	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
88		return err
89	}
90	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
91		return err
92	}
93	if err = addClientUserAgent(stack); err != nil {
94		return err
95	}
96	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
97		return err
98	}
99	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
100		return err
101	}
102	if err = addOpGetJobRunsValidationMiddleware(stack); err != nil {
103		return err
104	}
105	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetJobRuns(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// GetJobRunsAPIClient is a client that implements the GetJobRuns operation.
121type GetJobRunsAPIClient interface {
122	GetJobRuns(context.Context, *GetJobRunsInput, ...func(*Options)) (*GetJobRunsOutput, error)
123}
124
125var _ GetJobRunsAPIClient = (*Client)(nil)
126
127// GetJobRunsPaginatorOptions is the paginator options for GetJobRuns
128type GetJobRunsPaginatorOptions struct {
129	// The maximum size of the response.
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// GetJobRunsPaginator is a paginator for GetJobRuns
138type GetJobRunsPaginator struct {
139	options   GetJobRunsPaginatorOptions
140	client    GetJobRunsAPIClient
141	params    *GetJobRunsInput
142	nextToken *string
143	firstPage bool
144}
145
146// NewGetJobRunsPaginator returns a new GetJobRunsPaginator
147func NewGetJobRunsPaginator(client GetJobRunsAPIClient, params *GetJobRunsInput, optFns ...func(*GetJobRunsPaginatorOptions)) *GetJobRunsPaginator {
148	options := GetJobRunsPaginatorOptions{}
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 = &GetJobRunsInput{}
159	}
160
161	return &GetJobRunsPaginator{
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 *GetJobRunsPaginator) HasMorePages() bool {
171	return p.firstPage || p.nextToken != nil
172}
173
174// NextPage retrieves the next GetJobRuns page.
175func (p *GetJobRunsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*GetJobRunsOutput, 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.GetJobRuns(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_opGetJobRuns(region string) *awsmiddleware.RegisterServiceMetadata {
206	return &awsmiddleware.RegisterServiceMetadata{
207		Region:        region,
208		ServiceID:     ServiceID,
209		SigningName:   "glue",
210		OperationName: "GetJobRuns",
211	}
212}
213