// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package guardduty import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" "github.com/aws/aws-sdk-go-v2/private/protocol" ) type ListIPSetsInput struct { _ struct{} `type:"structure"` // The unique ID of the detector that the IPSet is associated with. // // DetectorId is a required field DetectorId *string `location:"uri" locationName:"detectorId" min:"1" type:"string" required:"true"` // You can use this parameter to indicate the maximum number of items you want // in the response. The default value is 50. The maximum value is 50. MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"` // You can use this parameter when paginating results. Set the value of this // parameter to null on your first call to the list action. For subsequent calls // to the action, fill nextToken in the request with the value of NextToken // from the previous response to continue listing data. NextToken *string `location:"querystring" locationName:"nextToken" type:"string"` } // String returns the string representation func (s ListIPSetsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *ListIPSetsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "ListIPSetsInput"} if s.DetectorId == nil { invalidParams.Add(aws.NewErrParamRequired("DetectorId")) } if s.DetectorId != nil && len(*s.DetectorId) < 1 { invalidParams.Add(aws.NewErrParamMinLen("DetectorId", 1)) } if s.MaxResults != nil && *s.MaxResults < 1 { invalidParams.Add(aws.NewErrParamMinValue("MaxResults", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s ListIPSetsInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.DetectorId != nil { v := *s.DetectorId metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "detectorId", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.MaxResults != nil { v := *s.MaxResults metadata := protocol.Metadata{} e.SetValue(protocol.QueryTarget, "maxResults", protocol.Int64Value(v), metadata) } if s.NextToken != nil { v := *s.NextToken metadata := protocol.Metadata{} e.SetValue(protocol.QueryTarget, "nextToken", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } type ListIPSetsOutput struct { _ struct{} `type:"structure"` // The IDs of the IPSet resources. // // IpSetIds is a required field IpSetIds []string `locationName:"ipSetIds" type:"list" required:"true"` // The pagination parameter to be used on the next list operation to retrieve // more items. NextToken *string `locationName:"nextToken" type:"string"` } // String returns the string representation func (s ListIPSetsOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s ListIPSetsOutput) MarshalFields(e protocol.FieldEncoder) error { if s.IpSetIds != nil { v := s.IpSetIds metadata := protocol.Metadata{} ls0 := e.List(protocol.BodyTarget, "ipSetIds", metadata) ls0.Start() for _, v1 := range v { ls0.ListAddValue(protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v1)}) } ls0.End() } if s.NextToken != nil { v := *s.NextToken metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "nextToken", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } const opListIPSets = "ListIPSets" // ListIPSetsRequest returns a request value for making API operation for // Amazon GuardDuty. // // Lists the IPSets of the GuardDuty service specified by the detector ID. If // you use this operation from a member account, the IPSets returned are the // IPSets from the associated master account. // // // Example sending a request using ListIPSetsRequest. // req := client.ListIPSetsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/guardduty-2017-11-28/ListIPSets func (c *Client) ListIPSetsRequest(input *ListIPSetsInput) ListIPSetsRequest { op := &aws.Operation{ Name: opListIPSets, HTTPMethod: "GET", HTTPPath: "/detector/{detectorId}/ipset", Paginator: &aws.Paginator{ InputTokens: []string{"NextToken"}, OutputTokens: []string{"NextToken"}, LimitToken: "MaxResults", TruncationToken: "", }, } if input == nil { input = &ListIPSetsInput{} } req := c.newRequest(op, input, &ListIPSetsOutput{}) return ListIPSetsRequest{Request: req, Input: input, Copy: c.ListIPSetsRequest} } // ListIPSetsRequest is the request type for the // ListIPSets API operation. type ListIPSetsRequest struct { *aws.Request Input *ListIPSetsInput Copy func(*ListIPSetsInput) ListIPSetsRequest } // Send marshals and sends the ListIPSets API request. func (r ListIPSetsRequest) Send(ctx context.Context) (*ListIPSetsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ListIPSetsResponse{ ListIPSetsOutput: r.Request.Data.(*ListIPSetsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // NewListIPSetsRequestPaginator returns a paginator for ListIPSets. // 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.ListIPSetsRequest(input) // p := guardduty.NewListIPSetsRequestPaginator(req) // // for p.Next(context.TODO()) { // page := p.CurrentPage() // } // // if err := p.Err(); err != nil { // return err // } // func NewListIPSetsPaginator(req ListIPSetsRequest) ListIPSetsPaginator { return ListIPSetsPaginator{ Pager: aws.Pager{ NewRequest: func(ctx context.Context) (*aws.Request, error) { var inCpy *ListIPSetsInput if req.Input != nil { tmp := *req.Input inCpy = &tmp } newReq := req.Copy(inCpy) newReq.SetContext(ctx) return newReq.Request, nil }, }, } } // ListIPSetsPaginator is used to paginate the request. This can be done by // calling Next and CurrentPage. type ListIPSetsPaginator struct { aws.Pager } func (p *ListIPSetsPaginator) CurrentPage() *ListIPSetsOutput { return p.Pager.CurrentPage().(*ListIPSetsOutput) } // ListIPSetsResponse is the response type for the // ListIPSets API operation. type ListIPSetsResponse struct { *ListIPSetsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ListIPSets request. func (r *ListIPSetsResponse) SDKResponseMetdata() *aws.Response { return r.response }