1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package lakeformation
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/lakeformation/types"
11	"github.com/aws/smithy-go/middleware"
12	smithyhttp "github.com/aws/smithy-go/transport/http"
13)
14
15// Lists the resources registered to be managed by the Data Catalog.
16func (c *Client) ListResources(ctx context.Context, params *ListResourcesInput, optFns ...func(*Options)) (*ListResourcesOutput, error) {
17	if params == nil {
18		params = &ListResourcesInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "ListResources", params, optFns, c.addOperationListResourcesMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*ListResourcesOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31type ListResourcesInput struct {
32
33	// Any applicable row-level and/or column-level filtering conditions for the
34	// resources.
35	FilterConditionList []types.FilterCondition
36
37	// The maximum number of resource results.
38	MaxResults *int32
39
40	// A continuation token, if this is not the first call to retrieve these resources.
41	NextToken *string
42
43	noSmithyDocumentSerde
44}
45
46type ListResourcesOutput struct {
47
48	// A continuation token, if this is not the first call to retrieve these resources.
49	NextToken *string
50
51	// A summary of the data lake resources.
52	ResourceInfoList []types.ResourceInfo
53
54	// Metadata pertaining to the operation's result.
55	ResultMetadata middleware.Metadata
56
57	noSmithyDocumentSerde
58}
59
60func (c *Client) addOperationListResourcesMiddlewares(stack *middleware.Stack, options Options) (err error) {
61	err = stack.Serialize.Add(&awsAwsjson11_serializeOpListResources{}, middleware.After)
62	if err != nil {
63		return err
64	}
65	err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpListResources{}, 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_opListResources(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// ListResourcesAPIClient is a client that implements the ListResources operation.
121type ListResourcesAPIClient interface {
122	ListResources(context.Context, *ListResourcesInput, ...func(*Options)) (*ListResourcesOutput, error)
123}
124
125var _ ListResourcesAPIClient = (*Client)(nil)
126
127// ListResourcesPaginatorOptions is the paginator options for ListResources
128type ListResourcesPaginatorOptions struct {
129	// The maximum number of resource results.
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// ListResourcesPaginator is a paginator for ListResources
138type ListResourcesPaginator struct {
139	options   ListResourcesPaginatorOptions
140	client    ListResourcesAPIClient
141	params    *ListResourcesInput
142	nextToken *string
143	firstPage bool
144}
145
146// NewListResourcesPaginator returns a new ListResourcesPaginator
147func NewListResourcesPaginator(client ListResourcesAPIClient, params *ListResourcesInput, optFns ...func(*ListResourcesPaginatorOptions)) *ListResourcesPaginator {
148	if params == nil {
149		params = &ListResourcesInput{}
150	}
151
152	options := ListResourcesPaginatorOptions{}
153	if params.MaxResults != nil {
154		options.Limit = *params.MaxResults
155	}
156
157	for _, fn := range optFns {
158		fn(&options)
159	}
160
161	return &ListResourcesPaginator{
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 *ListResourcesPaginator) HasMorePages() bool {
171	return p.firstPage || p.nextToken != nil
172}
173
174// NextPage retrieves the next ListResources page.
175func (p *ListResourcesPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListResourcesOutput, 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.ListResources(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_opListResources(region string) *awsmiddleware.RegisterServiceMetadata {
206	return &awsmiddleware.RegisterServiceMetadata{
207		Region:        region,
208		ServiceID:     ServiceID,
209		SigningName:   "lakeformation",
210		OperationName: "ListResources",
211	}
212}
213